-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
develop -> main #8
base: main
Are you sure you want to change the base?
Conversation
@@ -42,32 +41,32 @@ class HomeworkAssignedViewController: UIViewController { | |||
} | |||
|
|||
func getContent(id: Int) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
함수도 외부의 접근이 필요하지 않다면 private로 설정해주세요 :) 이외에도 다른 프로퍼티들도 마찬가지입니당!
getOrdView() | ||
getSubView() | ||
|
||
self.assignedTableView.reloadData() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
불필요한 self 사용은 자제해주세요!
@@ -8,11 +8,8 @@ | |||
import UIKit | |||
import FSCalendar | |||
|
|||
// MARK: Calendar2VC | |||
class Calendar2VC: UIViewController { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이거 VC말고 ViewController로 하면 좋을 것 같아요 : )
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Calendar 뒤에 2는 왜 붙인거죠?? 필요없다면 지워주세요!!
calendar.scrollDirection = .vertical | ||
|
||
} | ||
|
||
func setUpEvents() { | ||
formatter.locale = Locale(identifier: "ko_KR") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setup은 하나로 묶어지기 때문에 setUp이 아닌 setup이 올바른 네이밍입니당
GRAMO/GRAMO/VC/Auth/SignUpVC.swift
Outdated
@IBOutlet weak var pwTxtField: UITextField! | ||
@IBOutlet weak var pwConformTxtField: UITextField! | ||
|
||
@IBOutlet weak var authenticationBtn: UIButton! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
서영이랑 네이밍 포맷이 안맞는 것 같은데 누구는 Button이라고 하고 누구는 Btn이라고 하면 코드가 깔끔해보이지 않을 것 같아용:) 협업할 때 네이밍 컨벤션을 어느정도 맞추는게 좋아요!
No description provided.