菜鸟教程小白 发表于 2022-12-12 22:58:37

ios - UITableViewCell 与 UIView 中的 UIButton 性能


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

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

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

<p>演示代码:</p>

<p>ViewController.h</p>

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

<p>ViewController.m</p>

<pre><code>#import &#34;ViewController.h&#34;
#import &#34;CustomCell.h&#34;

@implementation ViewController

@synthesize myTableView, myView;

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    self = ;
    if (self) {
      ;
      ;
    }
    return self;
}

- (void) initMyView {
    UIView* newView = [ initWithFrame:CGRectMake(0,0,[ bounds].size.width,100)];
    self.myView = newView;
    // button on regularView
    UIButton* myButton = ;
    ;
    ;
    ;
    [ addSubview:myButton];
}

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

-(void) pressedMyButton {
    NSLog(@&#34;pressedMyButton&#34;);
}

- (void)viewDidLoad {
    ;
    [ addSubview:self.myView];
    [ 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 = ;
    if (customCell == nil) {
       customCell = [ initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@&#34;CustomCell&#34;];
    }
    return customCell;
}

@end
</code></pre>

<p>CustomCell.h</p>

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

<p>CustomCell.m</p>

<pre><code>#import &#34;CustomCell.h&#34;

@implementation CustomCell

@synthesize cellButton;

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
    self = ;
    if (self) {
      // button within cell
      cellButton = ;
      ;
      ;
      ;
      ;
    }
    return self;
}

- (void) pressedCellButton {
    NSLog(@&#34;pressedCellButton&#34;);
}

@end
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在表格 View 的“ ScrollView ”部分下,有“延迟内容触摸”选项...删除它并且按钮上的延迟消失了,但这样表格滚动不会开始拖动按钮。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UITableViewCell 与 UIView 中的 UIButton 性能,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/12810803/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/12810803/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UITableViewCell 与 UIView 中的 UIButton 性能