Objective C 在应用程序加载/启动时自动启动 IBAction
我有一个 iPhone 应用程序,希望它在自动加载后启动 IBAction。
我现在已经把它设置为按钮了。我正在寻找一些代码来使其在启动时自动启动,然后在应用程序中仍然使用该按钮。
感谢您的帮助。
I have an IPhone app and want it to kick off an IBAction after it loads automaticly.
I have it set up for a button now. I am looking for some code to make this automatic on start up and then still use the button while in the application.
Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IBAction 只是一个普通方法,您可以在
awakeFromNIB
、viewDidLoad
、applicationDidFinishLaunching:
或类似方法中调用它。An IBAction is just a normal method and you can just call it in a
awakeFromNIB
,viewDidLoad
,applicationDidFinishLaunching:
or similar method.