我正在使用 UITableViewController 和 UINavigationController。我想保存一些关于 tableViewCell 的信息。
UITableViewCell_extensionOf.h 文件
#import <UIKit/UIKit.h>
@interface UITableViewCell ()
@property(强,非原子)NSDate *onDate;
@结尾
MasterViewController.m 文件
#import "UITableViewCell_extensionOf.h"
……
-(无效)viewDidLoad {
..... UITableViewCell *cell = [[UITableViewCell alloc] init];
cell.onDate = [NSDate 日期]; //碰撞
}
错误日志:-[UIAccessibilityBundle setOnDate:]:无法识别的选择器发送到实例 0x7381b90
如何在 UITableViewCell 中添加一些额外的属性?我的最后一张卡是子类,这是获得这项工作的唯一方法吗?(其实我还没试过子类)