- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在向我的 View 添加两个按属性存储的 subview 。将 subview 添加到我的 View 时, subview 似乎在我的 setup
方法被调用后被释放。最终结果是 View 永远不会显示。现在,如果我将我的属性更改为 strong
而不是 weak
我会保留对 View 的引用,它们现在会显示在屏幕上。那么这是怎么回事?为什么 addSubview:
和 insertSubview:
不保留 subview ?请看下面的代码:
顺便说一句,我正在使用带有 ARC 的 iOS5(因此有强项和弱项)
#import "NoteView.h"
@interface NoteView() <UITextViewDelegate>
@property (weak, nonatomic) HorizontalLineView *horizontalLineView; // custom subclass of UIView that all it does is draw horizontal lines
@property (weak, nonatomic) UITextView *textView;
@end
@implementation NoteView
@synthesize horizontalLineView = _horizontalLineView;
@synthesize textView = _textView;
#define LEFT_MARGIN 20
- (void)setup
{
// Create the subviews and set the frames
self.horizontalLineView = [[HorizontalLineView alloc] initWithFrame:self.frame];
CGRect textViewFrame = CGRectMake(LEFT_MARGIN, 0, self.frame.size.width, self.frame.size.height);
self.textView = [[UITextView alloc] initWithFrame:textViewFrame];
// some addition setup stuff that I didn't include in this question...
// Finally, add the subviews to the view
[self addSubview:self.textView];
[self insertSubview:self.horizontalLineView atIndex:0];
}
- (void)awakeFromNib
{
[super awakeFromNib];
[self setup];
}
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
// Initialization code
[self setup];
}
return self;
}
最佳答案
这是您的一行代码:
self.horizontalLineView = [[HorizontalLineView alloc] initWithFrame:self.frame];
回想一下,horizontalLineView
属性很弱。让我们通过 ARC 生成的额外代码来了解该行中真正发生的事情。首先,您发送 alloc
和 initWithFrame:
方法,返回一个强引用:
id temp = [[HorizontalLineView alloc] initWithFrame:self.frame];
此时,HorizontalLineView
对象的保留计数为 1。接下来,因为您使用点语法设置了 horizontalLineView
属性,所以编译器生成代码以将 setHorizontalLineView:
方法发送给 self
,将 temp
作为参数传递。由于 HorizontalLineView
属性被声明为 weak
,setter 方法执行以下操作:
objc_storeWeak(&self->_horizontalLineView, temp);
设置 self->_horizontalLineView
等于 temp
,并将 &self->_horizontalLineView
放在对象的弱引用列表中。但它不会增加 HorizontalLineView
对象的保留计数。
最后,因为不再需要 temp
变量,所以编译器生成了这个:
[temp release];
这会将 HorizontalLineView
对象的保留计数降低到零,因此它会释放该对象。在释放过程中,它遍历弱引用列表,并将每个弱引用设置为 nil
。所以 self->_horizontalLineView
变成了 nil
。
解决这个问题的方法是使 temp
变量显式化,这样您就可以延长它的生命周期,直到将 HorizontalLineView
对象添加到它的父 View 之后,这保留它:
HorizontalLineView *hlv = [[HorizontalLineView alloc] initWithFrame:self.frame];
self.horizontalLineView = hlv;
// ...
[self insertSubview:hlv atIndex:0];
关于iphone - 为什么addSubview是: not retaining the view?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9747015/
我已经用 swift 编写了一堆代码并且更喜欢以编程方式编写很多代码,我想知道这两者之间的区别是什么: self.view.addSubview(someNewView) view.addSubvie
我在 tableviewcell 中有按钮。[cell addSubview:button] 和 [cell.contentview addsubview:button] 有什么区别?因为当我在 ta
我知道Apple建议开发者在self.contentview中添加 subview ,但是如果我们在UITableViewCell中添加 subview 会发生什么? 最佳答案 ios 7以后[s
我需要在 viewcontroller 的顶部显示 loaderView let loaderView: UIView() self.view.window?.addSubview(loaderVie
// Create and add a sub view CGRect viewRect = CGRectMake(0, 0, 200, 200); UIView *a_sub_view = [[UI
如何将 View 添加到窗口,以便调整 View 大小以适合窗口框架? 问题 我正在制作一个包含 2 个 View 的工作表窗口,其中一次只能看到其中一个 View ,因此 View 与窗口的大小相同
当我使用 addSubview方法,然后 removeFromSubview加载下一个 ViewController 然后加载 View 几次后,我的应用程序崩溃。我有很多关于 View 的图像。 尽
我试图让我的标 checkout 现动画: - (void)handleSingleTap:(UIGestureRecognizer *)gestureRecognizer { if (isS
我有两个 UIView,名为 A 和 B,我将 UIView B 添加到 A 的 subview 中: [A.view addSubview B] 我想知道是否有任何委托(delegate)或 Hoo
我有类似的东西: (1) NavigationController --> (2) UITableViewController --> (3 afted clicked in a cell) UIVi
我有动画打开 NSViewController,它尝试添加 subview : [self.view addSubview:joinToCompanyView]; joinToCompanyView.
在使用 addSubview 时防止内存泄漏的正确方法是什么?我收到来自 Instruments 的投诉,说这段代码存在漏洞。我做错了什么? 示例代码: 我的.h @interface MyCusto
以下代码的结果是:我没有看到标签。 我的理解是标签的 intrinsicSize 会允许标签拉伸(stretch)。为什么没有发生这种情况? import UIKit class ViewContro
错误 -> “UIVIew”没有名为“addSubView”的成员 override func viewDidLoad() { super.viewDidLoad() // Do an
在使用 addSubview() 加载 View Controller View 时,我遇到了一个奇怪的行为: 硬件和软件:OSX 10.9.5 Mavericks、XCode 6 Beta 6 上的
使用 addSubview 方法向 UIAlertView 添加一些控件在 iOS7 中已弃用。据我所知,Apple promise 添加 contentView 属性。 iOS 7 现在发布了,我看
我有一个已加载到 MainWindow.xib 中的 View 。它只是一个带有 uiimageview 的 View ,在整个屏幕(320 X 480)上显示图像。当应用程序加载时,我显示此 Vie
我有一个基于 UITabBar 的应用程序,它运行得很好。在某些情况下,我会显示不同的 UIViewController。现在让我烦恼的是,我必须调整测试 Nib 的框架(并且仅测试 Nib !)才能
嗨,我正在 xcode 3.2.3 中编写一个应用程序。我想要做的就是切换到另一个 View ,但我不确定这样做的最佳方法。我可以通过这两种方式中的任何一种... PreferencesViewCon
我遇到了一个奇怪的问题..我想向我当前的 View 添加一个 UIViewcontroller(称为 iView)。我通过调用 iView = [[KFKaraokeInfosView allo
我是一名优秀的程序员,十分优秀!