UITableView 썸네일형 리스트형 [iPhone] UITableVIew 꼭 써야하는 함수 tableView:cellForRowAtIndexPath: Asks the data source for a cell to insert in a particular location of the table view. (required) - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath Parameters tableView A table-view object requesting the cell. indexPath An index path locating a row in tableView. Return Value An object inheriting from UITableView.. 더보기 [iPhone] Uitableview 선택 해제 //셀 선택시 이벤트를 처리하는 함수 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [tableView deselectRowAtIndexPath:indexPath animated:YES];//선택해제 } 더보기 이전 1 다음