我正在尝试将Objective-C应用转换为Swift但我仍然坚持使用setBounds
。原始代码如下所示:
- (void)setBounds:(CGRect)bounds {
[super setBounds:bounds];
// code
}
Swift中的等价物是什么?我试过看文件和谷歌,但似乎无法搞清楚。
答案 0 :(得分:6)
您需要覆盖bounds
:
override var bounds: CGRect{
didSet{
//your code here
}
}