2

我正在为我的应用程序定制一个 UITableViewCell,一切都很好,因为我已经做了几次。

现在我想做一些动画,问题来了。

我将尽可能简短地解释它:

我正在做一个字典应用程序。我有一个视图,其中包含一个 UITableView 和我的自定义单元格 (NTNHistoryCell),此视图用于显示用户研究的历史记录。

#import <UIKit/UIKit.h>
#import "HistoryItem.h"

@protocol NTNHistoryCellDelegate;
@interface NTNHistoryCell : UITableViewCell<UIGestureRecognizerDelegate>

@property (strong, nonatomic) HistoryItem *historyItem;

@property (strong, nonatomic) IBOutlet UILabel *lblWord;
@property (strong, nonatomic) IBOutlet UILabel *lblDictName;
@property (strong, nonatomic) IBOutlet UILabel *lblTimeStamp;

//variables for editing
@property (strong, nonatomic) IBOutlet UIImageView *imgDeleteBackground;
@property (strong, nonatomic) IBOutlet UIView *frontView;
@property (strong, nonatomic) UIImageView *imgIconDelete;

@property (strong, nonatomic) id<NTNHistoryCellDelegate> delegate;

-(void)initLabels;
@end

@protocol NTNHistoryCellDelegate <NSObject>

@optional

-(void)historyCellIsDeleted:(NTNHistoryCell*)historyCell;

@end

用户可以向左或向右滑动以删除条目。单元格上有两个重要的东西:作为 UIImageView 的背景,用于在用户滑动时更改颜色,作为 UIView 的 frontView 包含一些 UILabel,frontView 将在用户滑动时更改其框架。如果用户使用翻译进行滑动,则该单元格将被删除(对应的条目在数据库中也被删除)。

现在我想做动画让用户知道他们可以在每次加载 tableview 时滑动单元格。我将事件 didEndDisplayingCell 与以下代码一起使用:

-(void)tableView:(UITableView *)tableView didEndDisplayingCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    //do cell animation to inform user that the cell can be swiped to delete
    //only for the 1st row    
    if(indexPath.row == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row)
    {        
        NTNHistoryCell *cell = (NTNHistoryCell *)[tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
        CGRect originalFrame = cell.frontView.frame;
        [UIView beginAnimations:@"move" context:nil];
        [UIView setAnimationDuration:1.0];

        //move left

        //not working!
        cell.frontView.frame = CGRectMake(-originalFrame.size.width, originalFrame.origin.y, originalFrame.size.width, originalFrame.size.height);
        cell.lblWord.text = @"text change test";//not working!
        cell.lblDictName.text = @"text change test";//not working!
        cell.frontView.backgroundColor = [UIColor greenColor];//work fine!

        [UIView commitAnimations];
    }
}

所有代码都不顺利,你可以看到我的评论,我可以更改背景颜色,但 UILabel 的文本和 frontView 的框架。

我打算向左移动然后向右移动frontView。

我哪里做错了?

这是为了澄清我的话的截图(我没有足够的声誉来发布图片):http: //i.stack.imgur.com/dUddJ.png

编辑:我解决了。在@danypata 回复中查看我的评论。

4

1 回答 1

1

因此,您需要检测表格视图何时完成加载过程,然后为第一个可见单元格制作动画。所以这是我的方法:

-(void)viewDidLoad {
  [super viewDidLoad];
  shouldAnimate = YES;
}

//delegate method
-(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{  if(shouldAnimate) {
       if([indexPath row] == ((NSIndexPath*)[[tableView indexPathsForVisibleRows] lastObject]).row){
       //now the table view completes the loading process
       [self perforAnimation];
     }
}

-(void)performAnimation {
   shouldAnimate = NO;
   NSIndexPath *firstCelPath = [[yourTableView indexPathsForVisibleCells] objectAtIndex:0]
   YourCustomCell *cell = [yourTableView cellForRowAtIndexPath:firstCellPath];
   [UIView animateWithDuration:0.3 animations:^{
     //do your changes
   }];
}

我不是 100% 肯定这种方法会奏效,但你应该试一试。

于 2013-06-12T21:29:33.647 回答