更改继承类的属性

时间:2015-09-10 02:08:42

标签: swift inheritance cocoapods

我有class更改了原始文本字段的外观和inherit

UITextField
class UINewTextField: UITextField{
    //Do some stuff with the text field here 
}

现在我在pods中使用了一些object-c textfieldsswift中的代码看起来像这样

class ViewController: UIViewController{
    var textField: UITextField   
}

我想要inheritViewController,但我还要将classes的{​​{1}}从textFields更改为UITextField < / p>

UINewTextField

有可能吗?

到目前为止,我一直在使用class MyViewController: ViewController{ ??? } 中的代码并直接更改,但每次运行命令更新pod时,文件都会更改回原始文件。

0 个答案:

没有答案