0

私のプログラムには、1 つのビュー コントローラーと 1 つの tableView コントローラーがあります。viewControllerのボタンをクリックするたびに、現在の時刻でテーブルビューセルをアップグレードするつもりです。

ViewController.m

@interface ViewController ()
  @property(nonatomic,strong) Brain* brain;
  @property(nonatomic,readonly)TimeTableController* tableControl;
@end

- (void)viewDidLoad
{
  [super viewDidLoad];
  _brain=[[Brain alloc] init];
  _tableControl=[[TimeTableController alloc] init];
}
- (IBAction)actionTime:(id)sender {
   [self.tableControl.entryTime addObject:[self.brain currentTime]];
}

timeTableController.h

@property (strong, nonatomic) IBOutlet UITableView *timeTable;
@property(nonatomic,strong) NSMutableArray* entryTime;

timeTableController.m

- (void)viewDidLoad
{
  [super viewDidLoad];

  _entryTime=[[NSMutableArray alloc] init];
  _timeTable=[[UITableView alloc] init];


  #pragma mark - Table view data source

 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
 {   if(!_entryTime) return 0;
  else
      return 1;
  }

  - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
 {
   return [_entryTime count];
  }
  - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 { ...
  self.cell.timeLabel.text = [NSString stringWithFormat:@"%@",[self.entryTime objectAtIndex:[indexPath row]]];
  }
[self.tableControl.timeTable reloadData];
 return cell;
}

ただし、ボタンを押しても何も起こりません。誰かがそれを解決するのを手伝ってくれますか?

4

1 に答える 1

0

あなたはどこですか

@property(nonatomic,strong) NSString* timeLabel;

?

次に、xib ファイルにあるカスタム セルにラベルを配置した後、それを xib ファイルに接続することを忘れないでください。

于 2013-08-13T18:36:14.457 に答える