本文介绍了如何自动生成像 ViewDidLoad 这样的方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想创建一个自定义类,它使用一个函数扩展 uiviewcontroller,当我创建自定义类的子类时,该函数会自动生成.像 UIViewController 的子类中的 viewDidLoad 和 didReceiveMemoryWarning.我该怎么办?
I want to create a custom class that extends uiviewcontroller with a function that when I create a subClass of my custom class, that function generate automatically. like viewDidLoad and didReceiveMemoryWarning in subclasses of UIViewController.what can I do?
我的自定义视图控制器:
My CustomViewController :
class CustomViewController: UIViewController
我的 CustomViewController 子类:
My subclass of CustomViewController :
class MySubClass: CustomViewController {
override func generatedFunction() {
//Do something
}
}
推荐答案
- 使用代码片段.
- 转到
/Applications/Xcode/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Templates
并编辑模板. - Use code snippets.
- Go to
/Applications/Xcode/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Xcode/Templates
and edit the templates.
这篇关于如何自动生成像 ViewDidLoad 这样的方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!