gpt4 book ai didi

iphone - 从自定义 UITableViewCell 获取 textField.text

转载 作者:行者123 更新时间:2023-12-03 20:22:30 24 4
gpt4 key购买 nike

我写了一个特殊的UITableViewCell。现在我需要从

中的文本字段中获取文本
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
CustomCell *custumCell = [tableView cellForRowAtIndexPath:indexPath];
//warning: incompatible Objective-C types initializing 'struct UITableViewCell *', expected 'struct CustomCell *'

NSString *title = [custumCell cellTitle].text;
[self setArticleReaded:title];
[title release];

}

#import <UIKit/UIKit.h>


@interface CustomCell : UITableViewCell {
IBOutlet UILabel *cellTitle;
IBOutlet UILabel *cellSubTitle;
IBOutlet UILabel *cellPubDate;
}

@property (nonatomic, retain) IBOutlet UILabel *cellTitle;
@property (nonatomic, retain) IBOutlet UILabel *cellSubTitle;
@property (nonatomic, retain) IBOutlet UILabel *cellPubDate;

@end

我希望有人知道解决方法。

最佳答案

转换:

CustomCell *custumCell = (CustomCell *)[tableView cellForRowAtIndexPath:indexPath];

这应该可以让您访问单元格的属性。

关于iphone - 从自定义 UITableViewCell 获取 textField.text,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3158124/

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