实际上我正在尝试在 UITableView 的不同行中实现不同的图像。通过创建一个新的 UITableViewCell 我尝试了很多来实现它但我失败了。我需要在每一行中设置两个图像和一个标签。如何做呢?而且我必须使用导航控制器在下一页中获取图像...请指定我的代码并解释。否则我无法理解。感谢您提供的信息丰富的答案...
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 5;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
sampletable1 *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray* views = [[NSBundle mainBundle] loadNibNamed:@"sampletable1" owner:nil options:nil];
for (UIView *view in views) {
if([view isKindOfClass:[UITableViewCell class]])
{
cell = (sampletable1*)view;
}
}
}