в вашем .h файле, добавьте следующее:
@interface YourClass: UIViewController <**UITableViewDataSource, UITableViewDelegate**>
Щелкните правой кнопкой мыши (или щелкните, удерживая клавишу Ctrl), и дважды перетащите его из tableView на Владелец файла. Один раз выберите «делегировать», а один раз выберите «источник данных».
Затем в вашем файле .m необходимо реализовать следующее:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{return 1;}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{return someNumber;}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
[[cell textLabel] setText:yourText];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
//do what you want to with the information at indexPath.row
}
Это должно заставить вас работать с tableView.