NSArray中有如下數據。使用AFHTTPRequestOperation
來獲取結果,然後執行 [ListOfName addObject:[responseData valueForKey:name]];
,想要下面的結果顯示在tableView中,但是不知道怎麼實現?
(
(
"Richard Conover",
"Richard Conover",
"Kaitlyn Matheson",
"Andrea Wannemaker",
"Andrea Wannemaker",
test,
james,
test,
gaurav,
sdfsdfs
)
)
如果用NSArray.count
返回。如何在tableView中分開打印?
1.設置UITableView的delegate,datasource
self.tableView.delegate=self;
self.tableView.datasource=self;
2.實現協議方法
-(NSInteger)numberOfSectionsInTableView {
return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection {
return [ListOfName count];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *identifier=@"cellIdentifier";
UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:identifier];
if (cell==nil) {
cell=[[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier] autorelease];
}
cell.textLabel.text=[ListObName objectAtIndex:[indexPath row]];
return cell;
}