ios计算属性是否会增加任何对象的弧数?

问题描述 投票:0回答:1

我有一个下面的代码,我想知道计算属性是否会增加另一个对象的弧数? (由弧保留)例如,mycustomlabel计数下面是2?

var mycustomlabel = UILabel()  
var myc : UILabel {
    get {
        return mycustomlabel
    }
}
automatic-ref-counting swift4.2 computed-properties
1个回答
0
投票

在这一点上,你没有一个强大的参考。

© www.soinside.com 2019 - 2024. All rights reserved.