다크호스 프로그래머 - 6.UITableView

다른 View에 비해 UItable View는 매우 광범위하게 사용되는 편이며, UItable View와 함께 사용하는 것은 셀로, 프로그램에서 셀을 스스로 정할 수 있으며, 내용 양식 등을 포함한다.
UItableView에는 데이터 소스(dataSource)가 필요합니다.
ViewController에서 선언
tableView를 할 때 컨트롤러를 에이전트 역할을 해야 합니다
컨트롤러에서 방법을 호출하여tableView를 조작합니다
일반적인 방법:
-(NSInterger)numberOfSectionsInTableView  //    


-(NSInterger)numberOfRowsInSection  //        

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath   //
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section    //  section          
-(NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section  //  section          
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath  //    
  • 좋은 웹페이지 즐겨찾기