這是我的代碼,我試圖在Array中添加值並將它們填充到Tableview中。在ios的Tableview中添加NSArray中的值
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [self.greekLetter count];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
NSString *SimpleIdentifier = @"SimpleIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SimpleIdentifier];
if(cell == nil){
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:SimpleIdentifier];
}
cell.textLabel.text = self.greekLetter[indexPath.row];
return cell;
}
當我添加值的牧羣代碼值它顯示正確的表視圖。
[email protected][@"prem",@"nath",@"kumar",@"shree"];
我想動態地將值添加到數組中,它將顯示在表格視圖中。有人能幫助我嗎?
添加的值,並調用'reloadData'上表視圖。 – vadian
http://stackoverflow.com/a/31870301/4601170 –