UITableViewCell 与 UIView 中的 UIButton 性能

Posted

技术标签:

【中文标题】UITableViewCell 与 UIView 中的 UIButton 性能【英文标题】:UIButton performance in UITableViewCell vs UIView 【发布时间】:2012-10-10 01:43:21 【问题描述】:

我想将 UIButton 添加到自定义 UITableViewCell(以编程方式)。这很容易做到,但我发现单元格中按钮的“性能”很慢 - 也就是说,当我触摸按钮时,在按钮视觉上进入突出显示状态之前有相当长的延迟.相比之下,常规 UIView 上相同类型的按钮响应速度非常快。

为了隔离问题,我创建了两个视图——一个是简单的 UIView,另一个是只有一个 UITableViewCell 的 UITableView。我在两个视图(UIView 和 UITableViewCell)中都添加了按钮,性能差异非常显着。

我已经搜索了网络并阅读了 Apple 文档,但还没有真正找到问题的原因。我的猜测是它在某种程度上与响应者链有关,但我不能完全确定它。我一定做错了什么,我会很感激任何帮助。谢谢。

演示代码:

ViewController.h

#import <UIKit/UIKit.h>
@interface ViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
@property UITableView* myTableView;
@property UIView* myView;

ViewController.m

#import "ViewController.h"
#import "CustomCell.h"

@implementation ViewController

@synthesize myTableView, myView;

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) 
        [self initMyView];
        [self initMyTableView];
    
    return self;


- (void) initMyView 
    UIView* newView = [[UIView alloc] initWithFrame:CGRectMake(0,0,[[UIScreen mainScreen] bounds].size.width,100)];
    self.myView = newView;
    // button on regularView
    UIButton* myButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    [myButton addTarget:self action:@selector(pressedMyButton) forControlEvents:UIControlEventTouchUpInside];
    [myButton setTitle:@"I'm fast" forState:UIControlStateNormal];
    [myButton setFrame:CGRectMake(20.0, 10.0, 160.0, 30.0)];
    [[self myView] addSubview:myButton];


- (void) initMyTableView 
    UITableView *newTableView = [[UITableView alloc] initWithFrame:CGRectMake(0,100,[[UIScreen mainScreen] bounds].size.width,[[UIScreen mainScreen] bounds].size.height-100) style:UITableViewStyleGrouped];
    self.myTableView = newTableView;
    self.myTableView.delegate = self;
    self.myTableView.dataSource = self;


-(void) pressedMyButton 
    NSLog(@"pressedMyButton");


- (void)viewDidLoad 
    [super viewDidLoad];
    [[self view] addSubview:self.myView];
    [[self view] addSubview:self.myTableView];


- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 
    return 1;


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
    return 1;


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 
    CustomCell *customCell = [tableView dequeueReusableCellWithIdentifier:@"CustomCell"];
    if (customCell == nil) 
       customCell = [[CustomCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"CustomCell"];
    
    return customCell;


@end

CustomCell.h

#import <UIKit/UIKit.h>
@interface CustomCell : UITableViewCell
@property (retain, nonatomic) UIButton* cellButton;
@end

CustomCell.m

#import "CustomCell.h"

@implementation CustomCell

@synthesize cellButton;

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier 
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) 
        // button within cell
        cellButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        [cellButton addTarget:self action:@selector(pressedCellButton) forControlEvents:UIControlEventTouchUpInside];
        [cellButton setTitle:@"I'm sluggish" forState:UIControlStateNormal];
        [cellButton setFrame:CGRectMake(20.0, 10.0, 160.0, 30.0)];
        [self addSubview:cellButton];
    
    return self;


- (void) pressedCellButton 
    NSLog(@"pressedCellButton");


@end

【问题讨论】:

这是一种猜测,但我还是把它扔在那里:在您的自定义单元实现中,您是否尝试过使用 self.cellButton 来使用属性而不是访问 ivar?这有什么区别吗? 使用属性和ivar没有区别 【参考方案1】:

在表格视图的“滚动视图”部分下,有“延迟内容触摸”选项...删除它并且按钮上的延迟消失了,但这样表格滚动不会开始拖动按钮。

【讨论】:

+1。这是问题的真正答案。我正在寻找delays content touches 但我选择了tableviewcell 而不是IB 中的整个表:D【参考方案2】:

我认为这与您正在做的事情没有任何关系(我对其进行了测试,它有点慢,但我不会称其为“缓慢”)。它可能与附加到表格视图的各种手势识别器有关——操作系统必须弄清楚正在发生什么手势,这可能会导致轻微的延迟。这是tableView.gestureRecognizers的日志:

2012-10-09 20:34:12.355 SlowButtonsInTableView[3635:c07] (
    "<UIScrollViewDelayedTouchesBeganGestureRecognizer: 0x71b42b0; state = Possible; delaysTouchesBegan = YES; view = <UITableView 0x789f800>; target= <(action=delayed:, target=<UITableView 0x789f800>)>>",
    "<UIScrollViewPanGestureRecognizer: 0x71b4940; state = Possible; delaysTouchesEnded = NO; view = <UITableView 0x789f800>; target= <(action=handlePan:, target=<UITableView 0x789f800>)>>",
    "<UISwipeGestureRecognizer: 0x71b4e00; state = Possible; view = <UITableView 0x789f800>; target= <(action=handleSwipe:, target=<UITableView 0x789f800>)>; direction = right,left>",
    "<UIGobblerGestureRecognizer: 0x71b5100; state = Possible; enabled = NO; view = <UITableView 0x789f800>>"
)

【讨论】:

谢谢 - 我不知道 tableView.gestureRecognizers,这是一个很好的线索。鉴于其中一些是私有的(即 UIGobblerGestureRecognizer),可能对此无能为力。我同意你的观点,“呆滞”可能太强了,但它足够引人注目,让我感到困扰——可能一开始就不会突出显示按钮。再次感谢!【参考方案3】:

在未启用表格视图滚动的情况下,延迟完全消失,可能延迟是由滚动所需的手势引起的

【讨论】:

以上是关于UITableViewCell 与 UIView 中的 UIButton 性能的主要内容,如果未能解决你的问题,请参考以下文章

UIView 扩展获取 UITableViewCell?

UITableViewCell 内的 UIView 上的 UIGestureRecognizer

如何检查 UITableViewCell 是不是包含 UIView

更改 UITableViewCell 内的 UIView 高度

根据 `UITableViewCell` 中的 `UILabel` 文本更改 `UIView` 宽度

点击 UITableViewCell 时 UIView 消失