Android 开发人员迁移到 iOS - 我需要了解什么?
经过几年的 Android 工作后,我有兴趣开始在 iOS 平台上进行开发。在为 iOS 而不是 Android 设计/编码时,可能会遇到哪些主要问题?
I'm interested in starting developing on the iOS platform, after a couple of years of Android work. What are the main things that are likely to trip me up when designing/coding for iOS instead of Android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在开发完 Android 之后,我又开发了一些 iphone 应用程序。
ListView
的 iPhone 版本称为TableView
。或多或少相同,但您需要定义一定数量的部分。/car/model/drawable
中BOOL 动画
。让我浪费很多时间的事情:
NIL
。NSLog
打印日志时,NSString
需要使用%@
而不是%s
。I have done some
iphone
apps after doing Android.AutoreleasePool
s stack works. This should be the most important thing to learn.ListView
is called aTableView
. More or less the same but you need to define an amount of sections./car/model/drawable
BOOL animated
.Things that made me lose a lot of time:
NIL
.NSLog
,NSString
needs to use%@
not%s
.我只是想说不要使用Interface Builder,尝试通过编码来制作应用程序
通过这个你可以轻松掌握iPhone程序的构建过程。
I just want to say that Dont use Interface Builder, Try to make application through coding
with this you will easily catch the building process for IPhone program.