iOS开发教程精选(附例程)

iOS开发教程精选(附例程)

4 (5人评价)

视图控制器(View Controllers)介绍的笔记

相关课时: 笔记详情:

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{

return 1;

}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

return [_dataArray count];

}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

static NSString *CellIndentifier=@"Cell";

UITableViewCell *cell=[tableView dequeueReusableCellStyleDefault reuseIdentifier:CellIdentifier];

if(cell==nil){

cell=[[UITableViewCell alloc]];

}

}

0 0

你感兴趣的课程

移动开发 IOS开发入门教程
17万+浏览/ 7251学员/ 4.1评分
免费
7万+浏览/ 804学员/ 4.8评分
免费
6万+浏览/ 241学员/ 4评分
免费