iOS tableview代码实现
时间: 2023-08-24 07:07:05 浏览: 204
ios_tableview功能实现
5星 · 资源好评率100%
下面是一个简单的 iOS UITableView 的代码实现示例:
1. 首先,在你的视图控制器中添加 UITableView 属性:
```
@interface MyViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
@property (nonatomic, strong) UITableView *tableView;
@end
```
2. 在 viewDidLoad 方法中初始化 UITableView:
```
- (void)viewDidLoad {
[super viewDidLoad];
// 初始化 UITableView
self.tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
self.tableView.delegate = self;
self.tableView.dataSource = self;
[self.view addSubview:self.tableView];
}
```
3. 实现 UITableViewDataSource 协议中的方法:
```
// 返回 UITableView 中的 section 数量
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
// 返回 UITableView 中某个 section 中的 row 数量
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 10;
}
// 返回 UITableView 中某个 indexPath 的 cell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellIdentifier = @"MyCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
cell.textLabel.text = [NSString stringWithFormat:@"Cell %ld", (long)indexPath.row];
return cell;
}
```
4. 实现 UITableViewDelegate 协议中的方法,比如设置 cell 的高度:
```
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 44.0f;
}
```
以上就是一个简单的 UITableView 的代码实现示例。需要注意的是,UITableView 必须指定 delegate 和 dataSource,而且需要实现 UITableViewDataSource 和 UITableViewDelegate 协议中的方法。
阅读全文