목록UITableView (2)
King of Stock
iOS 개발을 많이 하신 분은 과감히 안 보셔도 됩니다. 먼저 문제가 되었던 상황 및 로직은 다음과 같았습니다. [대략적인 로직] 1.UITableView content는 Dynamic Prototypes(Prototype Cells: 2) 으로 설정이 되어있음 2.위에 설정된 2개의 cell 중에서 한 개는 사용자의 입력을 받는 UITextField를 포함한 Cell(InputCell 이라고 통칭) 이고 다른 한 개는 Label만 있는 Cell(SelectableCell 이라고 통칭) 3.평시에는 InputCell 4개만 보여지고, 첫번째 입력란에 값을 넣으면 텍스트를 기반하여 데이터를 조회후 1번 인덱스부터 조회결과를 SelectableCell로 채워넣는 형태의 로직 4.사용자 편의를 위해 키보드에 ..
UITableView 함수인 endUpdates() 호출할 때에 다음과 같은 오류가 발생하는 경우가 있다. 오류메시지: Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (14) must be equal to the number of rows contained in that section before the update (14), plus or minus the number of row..