。を含むTimerCell.xibXIB
ファイルがあります。cellForRowAtIndexPathの他のクラスでは、これを初期化します。UITableViewCell
UITableViewCell
static NSString *CellIdentifier = @"cellTimer";
TimerCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
//cell = [[TimerCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"TimerCell"owner:self options:nil];
cell = [nib objectAtIndex:0];
私のTimerCellには2UILabel
つと1つありUIButton
ます。このボタンでは、アクションを何らかのメソッドに設定したいと思います。
どうやってやるの?そして、最初UILabel
に私のバックグラウンドカウントダウンタイマーからのデータをリアルタイムで表示する方法は?