我有class
更改了原始文本字段的外观和inherit
UITextField
class UINewTextField: UITextField{
//Do some stuff with the text field here
}
现在我在pods
中使用了一些object-c
textfields
,swift
中的代码看起来像这样
class ViewController: UIViewController{
var textField: UITextField
}
我想要inherit
此ViewController
,但我还要将classes
的{{1}}从textFields
更改为UITextField
< / p>
UINewTextField
有可能吗?
到目前为止,我一直在使用class MyViewController: ViewController{
???
}
中的代码并直接更改,但每次运行命令更新pod
时,文件都会更改回原始文件。