gpt4 book ai didi

ios - 使用 AsyncDisplayKit 添加自定义按钮

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:41:17 29 4
gpt4 key购买 nike

我正在开发 IOS 应用程序。我使用 Facebook AsyncDisplayKit 库。我想要 ASNodeCell 中的一个按钮 Bu 我得到了“变量‘节点’在被 block 捕获时未初始化。如何在 ASNodeCell 中添加 UIButton 或 UIWebView 控件。请帮助我

dispatch_queue_t _backgroundContentFetchingQueue;
_backgroundContentFetchingQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0);

dispatch_async(_backgroundContentFetchingQueue, ^{
ASDisplayNode *node = [[ASDisplayNode alloc] initWithViewBlock:^UIView *{
UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
[button sizeToFit];
node.frame = button.frame;
return button;
}];

// Use `node` as you normally would...
node.backgroundColor = [UIColor redColor];

[self.view addSubview:node.view];
});

enter image description here

最佳答案

请注意,在您的情况下,无需使用 UIButton,您可以将 ASTextNode 用作按钮,因为它继承自 ASControlNode(ASImageNode 也是如此)。这在指南第一页的底部进行了描述:http://asyncdisplaykit.org/guide/ .这也将允许您在后台线程而不是主线程上调整文本大小(您在示例中提供的 block 在主队列上执行)。

为了完整起见,我还将评论您提供的代码。

您在创建 block 时试图在 block 中设置节点的框架,因此您试图在其初始化期间在其上设置框架。那会导致你的问题。当您使用 initWithViewBlock: 时,我认为您实际上不需要在节点上设置框架:因为 ASDisplayNode 在内部使用该 block 直接创建其 _view 属性,该属性最终添加到 View 层次结构中。

我还注意到您正在从后台队列调用 addSubview:,在调用该方法之前,您应该始终分派(dispatch)回主队列。为方便起见,AsyncDisplayKit 还将 addSubNode: 添加到 UIView。

虽然我建议您在此处使用 ASTextNode,但我已经更改了您的代码以反射(reflect)更改。

dispatch_queue_t _backgroundContentFetchingQueue;
_backgroundContentFetchingQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0);

dispatch_async(_backgroundContentFetchingQueue, ^{
ASDisplayNode *node = [[ASDisplayNode alloc] initWithViewBlock:^UIView *{
UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
[button sizeToFit];
//node.frame = button.frame; <-- this caused the problem
return button;
}];

// Use `node` as you normally would...
node.backgroundColor = [UIColor redColor];

// dispatch to main queue to add to view
dispatch_async(dispatch_get_main_queue(),
[self.view addSubview:node.view];
// or use [self.view addSubnode:node];
);
});

关于ios - 使用 AsyncDisplayKit 添加自定义按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28831366/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com