iOS TableView参考插座

时间:2014-12-27 17:13:58

标签: ios objective-c cocoa-touch uitableview uistoryboard

我无法在故事板上将引用插座连接到showTableView。我只能连接到视图。我试图用一些数据显示tableview。这是我正在使用的代码。请帮助我。谢谢。

ViewController.h
@interface ViewController : UIViewController<UITableViewDataSource, UITableViewDelegate>

@property(nonatomic, strong) IBOutlet UITableView *showTableView;


ViewController.m
#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
#warning Potentially incomplete method implementation.
// Return the number of sections.
return 1;
}


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.


return [jsonResults count];

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath     *)indexPath
{
NSString *simpleIdentifier = @"SimpleIdentifier";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleIdentifier];

if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle     reuseIdentifier:simpleIdentifier];
}

// Configure the cell...

NSDictionary *appsdict = [jsonResults objectAtIndex:indexPath.row];

NSString *nameString = [appsdict objectForKey:@"name"];

cell.textLabel.text = [appsdict objectForKey:@"name"];
cell.textLabel.textColor = [UIColor whiteColor];
cell.textLabel.font = [UIFont boldSystemFontOfSize:12];

return cell;
}

1 个答案:

答案 0 :(得分:0)

确保您已将UIViewController的自定义类设置为界面中的ViewController,以便将其出口(包括showTableView)正确链接到{ {1}}。

enter image description here