`

IBoutlet weak strong

 
阅读更多
From a practical perspective, in iOS and OS X outlets should be defined as declared properties. Outlets should generally be weak, except for those from File’s Owner to top-level objects in a nib file (or, in iOS, a storyboard scene) which should be strong. Outlets that you create should therefore typically be weak, because:

Outlets that you create to subviews of a view controller’s view or a window controller’s window, for example, are arbitrary references between objects that do not imply ownership.
The strong outlets are frequently specified by framework classes (for example, UIViewController’s view outlet, or NSWindowController’s window outlet).

 比如:

@property (weak) IBOutlet MyView *viewContainerSubview;
@property (strong) IBOutlet MyOtherClass *topLevelObject;

 当你的IBoutlet是 nib或storyboard的所拥有的view或window时,要声明为strong,其他情况应该声明为weak,因为声明为strong的应该是nib或storyboard所拥有的对象,而我们一般声明的IBoutlet都是某个view或window的subview,所以要声明为weak

Outlets should be changed to strong when the outlet should be considered to own the referenced object:

As indicated previously, this is often the case with File’s Owner—top level objects in a nib file are frequently considered to be owned by the File’s Owner.
You may in some situations need an object from a nib file to exist outside of its original container. For example, you might have an outlet for a view that can be temporarily removed from its initial view hierarchy and must therefore be maintained independently.

 当你的某个IBoutlet要经常在他的原拥有者之外存在,经常要变动他的所有者,比如要经常从一个view移到另一个view,这时需要将其声明为strong

官方文档

分享到:
评论

相关推荐

    IOS中(assign,retain,copy,weak,strong)的区别以及nonatomic的含义

    IBOutlet、Delegate 一般用的就是 weak,这是因为它们会在类外部被调用,防止循环引用。 strong: strong 相对的,strong 就类似于 retain 了,叫强引用,会增加引用计数,类内部使用的属性一般都是 strong 修饰的...

    05-图片浏览器.zip

    @property (weak, nonatomic) IBOutlet UILabel *indexLabel; // 图像数据 @property (nonatomic, strong) NSArray *imageArray; // 图像控件 @property (weak, nonatomic) IBOutlet UIImageView *imageView; // ...

    详解iOS应用使用Storyboard布局时的IBOutlet与IBAction

    如果`IBOutlet`属性是`strong`,那么可能会形成循环引用,导致内存泄漏。因为视图控制器已经持有这些UI对象,所以`IBOutlet`的引用应该是`weak`,以避免这种不必要的强引用关系。 另一方面,`IBAction`是用于标记...

    UITableView、UITableView基本用法、UITableView详解

    @property (weak, nonatomic) IBOutlet UITableView *tableView; // UITableView 中的数据,用一个字符串数组来保存 @property (strong, nonatomic) NSMutableArray *tableDataArr; @end ``` 在上面的代码中,声明...

    iOS 5 arc 指南

    当对象没有Strong指针指向时,即使有Weak指针指向,也会被释放,而Weak指针会自动设置为`nil`。例如,`__weak NSString* weakName = self.textField.text;`,这里`weakName`就是一个Weak指针。 #### Xcode的ARC自动...

    iphone程序播放视频文件

    @IBOutlet weak var videoView: UIView! override func viewDidLoad() { super.viewDidLoad() let videoURL = Bundle.main.url(forResource: "ceshi", withExtension: "mp4")! let player = AVPlayer(url: ...

    iOS 5.0 ARC开发详细解读

    ARC下,这些属性可以被声明为`strong`或`weak`类型。 - **Strong**: 默认情况下,实例变量和局部变量均为`strong`类型,表示这些变量持有对象的所有权,并负责其生命周期。 - **Weak**: `weak`类型的变量不持有...

    购物车Demo

    @property (nonatomic, weak) IBOutlet UILabel *productQuantityLabel; @property (nonatomic, weak) IBOutlet UISwitch *isSelectedSwitch; @end @implementation CartTableViewCell // 设置cell内容的方法 @end ...

    iOS 5 ARC完全指南

    2. **Strong和Weak指针** - **Strong指针**: 指那些能够保持对象生命的存在,如实例变量、合成属性等,默认情况下均为strong类型。 - **Weak指针**: 不会增加对象的引用计数,仅用于访问目的。当对象的所有strong...

    ios 导航栏放置多个按钮及引申的ivar变量的问题

    1. 使用strong或weak属性:对于非ARC环境,ivar默认为assign,可能导致野指针。在ARC环境下,根据对象的生命周期选择strong(默认)或weak属性。一般情况下,按钮应使用strong属性,因为它们的生命周期通常与视图...

    ios 5 ARC 完全指南

    在ARC环境下,指针可以拥有两种类型的角色:strong(强引用)和weak(弱引用)。Strong指针意味着它持有对象的所有权,只要至少有一个strong指针指向一个对象,该对象就不会被销毁。当最后一个strong指针被释放或...

    可旋转的饼图

    @IBOutlet weak var pieChartView: PieChartView! override func viewDidLoad() { super.viewDidLoad() // 假设我们有以下数据 let dataEntries = [ PieChartDataEntry(value: 30, label: "Category 1"), ...

    2017年5月iOS招人心得(附面试题) - 简书1

    9. **IBOutlet与UIView的weak引用**:IBOutlet通常连接到 storyboard 的 UI 元素,为了防止循环引用,应该使用 weak 关键字。 10. **nonatomic与atomic**:nonatomic是非线程安全的属性,性能较好;atomic则是线程...

    iPhone中部分控件的应用

    @property (weak, nonatomic) IBOutlet UILabel *label; @property (weak, nonatomic) IBOutlet UIButton *button; @end ``` 在`.m`文件中实现事件处理方法。 ```objective-c - (IBAction)clickBtn:(id)...

    ARC完全指南ios

    在ARC环境下,`IBOutlet`默认具有`strong`属性,这意味着它会持有与之相连的UI元素,确保其不会被意外释放。 #### `readonly property` 在ARC环境中,`readonly`属性是指不能被外部更改的属性。这意味着一旦设置了...

    01加法计算器_计算器_

    @property (weak, nonatomic) IBOutlet UITextField *number1TextField; @property (weak, nonatomic) IBOutlet UITextField *number2TextField; @property (weak, nonatomic) IBOutlet UILabel *resultLabel; @...

    iOS开发中实现新闻图片的无限循环展示的方法

    @property (weak, nonatomic) IBOutlet UIImageView *imageView; @end @implementation YYcell - (void)setNews:(YYnews *)news { _news = news; self.label.text = news.title; self.imageView.image = ...

    iOS 高仿系统计算机

    @property (nonatomic, weak) IBOutlet UILabel *displayLabel; @property (nonatomic, strong) Calculator *calculator; @end @implementation ViewController - (IBAction)buttonPressed:(UIButton *)sender { ...

    iOS实现一个意见反馈类型的输入栏

    前言 本文主要给大家介绍了关于利用iOS如何实现一个意见反馈类型的输入栏,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。 要做个意见反馈,...@property (weak, nonatomic) IBOutlet UITe

Global site tag (gtag.js) - Google Analytics