程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-在UITableView中顯示數據

ios-在UITableView中顯示數據

編輯:編程綜合問答
在UITableView中顯示數據

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;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved