上周我已经下载了
Xcode 4.2,所以当我开始构建应用程序时,我试图将UITableView添加到我的一个项目中(正如我从开始开发以来一直在做的那样),但是UITableView无法正常工作.我正在寻找教程,但我没有找到任何:
如何在XOS 4.2上为IOS 5创建UITableView?
如何在XOS 4.2上为IOS 5创建UITableView?
obs:我没有使用storyBoard只是XIB的!
解决方法
在.h文件中,添加以下内容:
@interface YourClass: UIViewController <**UITableViewDataSource,UITableViewDelegate**>
右键单击(或按住Ctrl键单击)并从tableView拖动到文件所有者两次.一次,选择“委托”,然后选择“dataSource”.
- (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 }
这应该会让你找到一个工作表.