标签:ios
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if ([imageArray count]/2 ==0) {
return [imageArray count]/2;
}
return [imageArray count]/2+1;
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{标签:ios
原文地址:http://blog.csdn.net/wk598/article/details/46051499