簡體   English   中英

如何顯示通過滑動行在自定義tableview單元內創建的視圖?

[英]How to show a view created inside the custom tableview cell by swiping the row?

我已經創建了具有自定義表格視圖單元格的iPhone應用程序,並且還在cellForRowAtIndexPath創建了一個視圖。 現在,當我在UITable滑動單元格時,我創建的視圖應顯示在特定的單元格中,所有其他單元格內容應保持不變。

我的代碼如下:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
RKCardCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"RKCardCell"];

// Configure the cell...
if (cell == nil) {
    cell = [[RKCardCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"RKCardCell"];
}
UISwipeGestureRecognizer *swipeGesture = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeMethod:)];
swipeGesture.direction = UISwipeGestureRecognizerDirectionLeft;
[cell addGestureRecognizer:swipeGesture];

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(-320.0, 8.0, 300, 180)];
[view setBackgroundColor:[UIColor greenColor]];

cell.profileImage.image = [UIImage imageNamed:[photoArray objectAtIndex:indexPath.row]];
cell.titleLabel.text = [titleArray objectAtIndex:indexPath.row];
cell.nameLabel.text = [nameArray objectAtIndex:indexPath.row];
cell.descriptionLabel.text = [descriptionArray objectAtIndex:indexPath.row];

//%%% I made the cards pseudo dynamic, so I'm asking the cards to change their frames depending on the height of the cell
cell.cardView.frame = CGRectMake(10, 5, 300, [((NSNumber*)[cardSizeArray objectAtIndex:indexPath.row])intValue]-10);

return cell;
}

以下代碼用於手勢滑動:

- (void)swipeMethod:(UIGestureRecognizer *)gestureRec
{
[UIView animateWithDuration: 0.5 animations:^{
    CGRectOffset(self.rkCardCell.cardView.frame, -320.0, 0.0);
}];

}

提前致謝。

如果將手勢識別器與表格視圖一起使用,則效果很好。

UISwipeGestureRecognizer *swipeGesture = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeTarget:)];
swipeGesture.direction = UISwipeGestureRecognizerDirectionLeft;
[cell addGestureRecognizer:_myTableView];

和您的滑動目標方法如下。

- (IBAction)swipeTarget:(UISwipeGestureRecognizer *)gestureRecognizer
{
    CGPoint swipePoint         = [gestureRecognizer locationInView:_myTableView];
    NSIndexPath *cellIndexPath = [_myTableView indexPathForRowAtPoint:swipePoint];
    RKCardCell *cell           = [_myTableView cellForRowAtIndexPath:cellIndexPath];

    // Add your code here to show your view
    [UIView animateWithDuration: 0.5 animations:^{
           CGRectOffset(cell.cardView.frame, -320.0, 0.0);
    }];
}

看看https://github.com/CEWendel/SWTableViewCell

它是制作自定義可滑動tableviewcell的一個非常好的簡單庫。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM