我有一个UITableView,它处于Prototype模式。我已将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
实施档案
#import "witLeagueSeriesGameDetailCell.h"
#import "witAppDelegate.h"
@implementation witLeagueSeriesGameDetailCell
@synthesize witGameNumber=_witGameNumber;
@synthesize witGameScore = _witGameScore;
@synthesize witGameResult = _witGameResult;
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
}
return self;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
- (void) SetGameResult:(NSString *)resultName{
NSLog([NSString stringWithFormat:@"%@",resultName]);
//self.witGameResult.text = resultName;
[_witGameResult setText: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]]];
}
关于为什么它可能不会在屏幕上显示的任何想法
答案 0 :(得分:0)
那些是IBOutlets所以他们应该连接到故事板上的那些。