AppDelegate.swift如何在Xcode 6.3中替换AppDelegate.h和AppDelegate.m

AppDelegate.swift如何在Xcode 6.3中替换AppDelegate.h和AppDelegate.m,第1张

概述根据 iOS Developer Library The app delegate is where you write your custom app-level code. Like all classes, the AppDelegate class is defined in two source code files in your app: in the interface file, 根据 iOS Developer Library
@H_403_2@The app delegate is where you write your custom app-level code. like all classes,the AppDelegate class is defined in two source code files in your app: in the interface file,AppDelegate.h,and in the implementation file,AppDelegate.m.

@H_403_2@但是,在Xcode 6.3中,似乎只有AppDelegate.swift,而不再是.h和.m扩展名.我想了解.swift如何替换.h和.m扩展名.

简单的答案是AppDelegate.swift只是Objective-C AppDelegate.h和AppDelegate.m的转换,因为Swift不需要单独的头文件和实现,而是单个.swift文件. @H_403_2@然而,在引擎盖下,两者之间还存在其他关键差异.

@H_403_2@在Objective-C中,存在一个main.m文件,其唯一目的是实例化UIApplicationMain

@H_403_2@在Swift中,位于AppDelegate.swift顶部的@UIApplicationMain注释标记取代了Objective-C中main.m文件中存在的任何main函数的需要.如果省略此标记,则可以使用main.swift文件使用指定的App Delegate实例化UIApplication.

@H_403_2@main.swift实现如下所示:

import UIKitautoreleasepool {UIApplicationMain(Process.argc,Process.unsafeArgv,nil,NsstringFromClass(AppDelegate.self))}
总结

以上是内存溢出为你收集整理的AppDelegate.swift如何在Xcode 6.3中替换AppDelegate.h和AppDelegate.m全部内容,希望文章能够帮你解决AppDelegate.swift如何在Xcode 6.3中替换AppDelegate.h和AppDelegate.m所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1042026.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存