2013-06-19 47 views
2

我想簡單地在自定義表格單元格中通過在該單元格中向左或向右滑動來設置自定義視圖的動畫效果。我正在從xib載入單元格。iPhone UITableViewCell SwipeGesture

這是我用來從xib填充單元格的代碼。

- (UITableViewCell *)tableView:(UITableView *)tableView 
    cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
static NSString *CellIdentifier = @"CellIdentifier"; 

CustomCell *CustomCell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; 

if (CustomCell == nil) 
{ 
    NSArray *cells =[[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:nil options:nil]; 

    for (UIView *view in cells) 
    { 
     if([view isKindOfClass:[UITableViewCell class]]) 
     { 
      CustomCell = (CustomCell *)view; 
      break; 
     } 
    } 

} 
CustomCell.textLabel.Text = @"this is a text"; 
return CustomCell; 
} 

我需要的是刷一個單元格以顯示帶按鈕的背景視圖。我已經搜索了許多關於這個的教程,但是沒有一個是使用xib的自定義單元。

回答

1

喜試試這個爲你刷卡的需求的細胞,露出帶有按鈕的背景圖。

jzswipecell