IOS 6子类未更新UITableViewCell中的UITextField

IOS 6子类未更新UITableViewCell中的UITextField,uitableview,ios6,Uitableview,Ios6,我有一个UITableView,它处于原型模式。我已经把4个标签和2个文本字段放进了一个单元格,其中一个单元格是一个基本的文本输入,可以正常工作 我已经对TableViewCell进行了细分 头文件 #import <UIKit/UIKit.h> @interface witLeagueSeriesGameDetailCell : UITableViewCell @property (strong, nonatomic) IBOutlet UILabel *witGameNumb

我有一个UITableView,它处于原型模式。我已经把4个标签和2个文本字段放进了一个单元格,其中一个单元格是一个基本的文本输入,可以正常工作

我已经对TableViewCell进行了细分

头文件

#import <UIKit/UIKit.h>

@interface witLeagueSeriesGameDetailCell : UITableViewCell

@property (strong, nonatomic) IBOutlet UILabel *witGameNumber;
@property (strong, nonatomic) IBOutlet UITextField *witGameScore;
@property (strong, nonatomic) IBOutlet UITextField *witGameResult;

- (void) SetGameResult:(NSString *)resultName;

@end
tableview也被子类化了。它包含一个选择器,该选择器在输入相应的文本字段时弹出。当选择一行时,它将值传递回SetGameResult函数,我可以使用NSLog看到这一点

但是,单元格的文本不会在屏幕上更新

从代码中可以看出,我尝试了点概念方法和消息方法来设置文本

TVC选择器代码为

- (void) pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component{
    witLeagueSeriesGameDetailCell *myLabel = [[witLeagueSeriesGameDetailCell alloc] init];
    [myLabel SetGameResult:[NSString stringWithFormat:@"%@",[self.statusList objectAtIndex:row]]];

}

任何关于它为什么不能在屏幕上显示的想法都是IBoutlet,所以它们应该连接到故事板上的

- (void) pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component{
    witLeagueSeriesGameDetailCell *myLabel = [[witLeagueSeriesGameDetailCell alloc] init];
    [myLabel SetGameResult:[NSString stringWithFormat:@"%@",[self.statusList objectAtIndex:row]]];

}