다분히 주관적인 해석이 대부분인 글입니다. 혹시나 다른 분들이 이 글을 보시고 잘못된 부분을 찾으신다면 언제든 피드백을 부탁드리겠습니다. 감사합니다.
struct DataModel {
var data1: String
var data2: Int
var data3: Bool
}
class Operation {
static var operation: Operation?
private init() {}
func addQuestionMark(input string: String) {
print("\(string)?")
}
func squareSelf(input number: Int) {
print("\(number*number)")
}
func oppositeValue(input bool: Bool) {
print("\(!bool)")
}
}
data1, 2, 3
을 캡슐화하는 구조체 DataModel
을 정의하고, 해당 데이터를 조작하고 처리하는 논리와 계산(메서드들)을 정의하는 객체!! 라고 생각하면 되는 것 같다.TextField
에 문자를 적거나, Slider
를 밀어 값을 변경하려 한다던지...), 이를 컨트롤러 객체를 통해 모델에 전달합니다.class TodoListViewController: UITableViewDelegate, UITableViewDataSource {
//...
//...
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return TodoListViewController.todoList.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = ToDoTableView.dequeueReusableCell(withIdentifier: "ToDoCell", for: indexPath) as! TodoTableViewCell
cell.setCell(TodoListViewController.todoList[indexPath.row])
return cell
}
}