gpt4 book ai didi

iphone - 如何根据indexPath获取单元格文本?

转载 作者:太空狗 更新时间:2023-10-30 03:13:59 26 4
gpt4 key购买 nike

我有一个包含超过 5 个 UITabBarItem 的 UITabBarController,所以可以使用 moreNavigationController。

在我的 UITabBarController 委托(delegate)中,我执行以下操作:

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{
//do some stuff
//...

UITableView *moreView = (UITableView *)self.tabBarController.moreNavigationController.topViewController.view;
moreView.delegate = self;
}

我想实现一个 UITableViewDelegate,这样我就可以捕获选定的行,设置自定义 View 属性,然后推送 View Controller :

- (void)tableView:(UITableView *)tblView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{
//how can I get the text of the cell here?
}

我需要在用户点击一行时获取单元格的文本。我怎样才能做到这一点?

最佳答案

- (void)tableView:(UITableView *)tblView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{
//how can I get the text of the cell here?
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
NSString *str = cell.textLabel.text;
}

更好的方案是维护cell的Array,直接在这里使用

    // Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}

Service *service = [self.nearMeArray objectAtIndex:indexPath.row];
cell.textLabel.text = service.name;
cell.detailTextLabel.text = service.description;
if(![self.mutArray containsObject:cell])
[self.mutArray insertObject:cell atIndex:indexPath.row];
return cell;
}



- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

UITableViewCell *cell = [self.mutArray objectAtIndex:indexPath.row];
NSString *str = cell.textLabel.text;

}

关于iphone - 如何根据indexPath获取单元格文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2895389/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com