`
lokvin
  • 浏览: 164855 次
  • 性别: Icon_minigender_1
  • 来自: 地球
文章分类
社区版块
存档分类
最新评论
阅读更多
作为一个 iphone newbie ,开始阅读如下文章:

----------------------- already done-----------------------------

你的第一个 ios Application  { Read Done! }
这是个简单的例子程序,不过是个很好的开始。
http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhone101/Articles/00_Introduction.html

Learning Objective-C: Aprimer  { Read Done! }
内容很少,也很简单的介绍
http://developer.apple.com/library/ios/#referencelibrary/GettingStarted/Learning_Objective-C_A_Primer


----------------------- current reading ----------------------------
View Programming Guide for iOS
http://developer.apple.com/library/ios/#documentation/WindowsViews/Conceptual/ViewPG_iPhoneOS/Introduction/Introduction.html#//apple_ref/doc/uid/TP40009503-CH1-SW2


----------------------- to be continue ----------------------------
Event handle guide for ios
http://developer.apple.com/library/ios/#documentation/EventHandling/Conceptual/EventHandlingiPhoneOS/Introduction/Introduction.html#//apple_ref/doc/uid/TP40009541


The Objective-C Programming Language
http://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/ObjectiveC/Introduction/introObjectiveC.html#//apple_ref/doc/uid/TP30001163

ios overview
http://developer.apple.com/library/ios/#referencelibrary/GettingStarted/URL_iPhone_OS_Overview/index.html

Cocoa Fundamentals Guide
http://developer.apple.com/library/ios/#documentation/Cocoa/Conceptual/CocoaFundamentals/Introduction/Introduction.html#//apple_ref/doc/uid/TP40002974

iOS Technology Overview
http://developer.apple.com/library/ios/#documentation/Miscellaneous/Conceptual/iPhoneOSTechOverview/Introduction/Introduction.html#//apple_ref/doc/uid/TP40007898

阅读分析 crash report
http://developer.apple.com/library/ios/#technotes/tn2008/tn2151.html

xcode debug guide
http://developer.apple.com/library/ios/#documentation/DeveloperTools/Conceptual/XcodeDebugging/000-Introduction/Introduction.html

ios debug magic
http://developer.apple.com/library/ios/#technotes/tn2010/tn2239.html

memory usage performance guide
http://developer.apple.com/library/ios/#documentation/Performance/Conceptual/ManagingMemory/ManagingMemory.html

performance test start point
http://developer.apple.com/library/ios/#referencelibrary/GettingStarted/GS_Performance_iPhone/index.html

debug with GDB
http://developer.apple.com/library/ios/#documentation/DeveloperTools/gdb/gdb/gdb_1.html



一些例子代码
MoveMe
http://developer.apple.com/library/ios/#samplecode/MoveMe/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007315

Metronome
http://developer.apple.com/library/ios/#samplecode/Metronome/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007434

TableViewSuit
http://developer.apple.com/library/ios/#samplecode/TableViewSuite/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007318

SimpleDrillDown
http://developer.apple.com/library/ios/#samplecode/SimpleDrillDown/Introduction/Intro.html#//apple_ref/doc/uid/DTS40007416


关于app 国际化的topic
http://developer.apple.com/library/ios/#documentation/MacOSX/Conceptual/BPInternational/BPInternational.html#//apple_ref/doc/uid/10000171i


分享到:
评论

相关推荐

    swift-ReadingList允许用户跟踪和归类他们阅读书籍的iOS应用

    在iOS开发领域,Swift语言因其易读性、安全性以及强大的功能而受到广泛欢迎。本项目“swift-ReadingList”是一个专为书虫们设计的应用,它允许用户轻松地跟踪和归类他们的阅读书籍,从而提升阅读管理的效率。在这个...

    一款iOS BLE蓝牙调试工具,非常简单容易,也可以作为一个蓝牙库.zip

    8. 写入(Writing)与读取(Reading)操作:中心设备可以读取外围设备的特征值,或者写入新的值,从而进行数据交互。 9. 通知(Notifications)与指示(Indications):外围设备可以设置特征为可通知或指示,当特征...

    iOS本地文件操作

    print("Error reading plist: \(error)") } } ``` 6. **安全性与最佳实践**:在处理用户数据时,确保遵守App Store审核指南,不要滥用Documents目录。偏好设置应存放在Library/Preferences,临时文件使用tmp,可...

    iOS 9 Programming Fundamentals with Swift (非epub转pdf)

    If you started reading Programming iOS 9 and wondered about such unexplained matters as Swift language basics, the UIApplicationMain function, the nib-loading mechanism, Cocoa patterns of delegation ...

    ios-reading-list

    阅读清单 完成该项目的学生表明他们可以: 了解和解释模型对象和模型控制器在MVC中的作用 使类或结构符合Codable 使用FileManager查找系统目录(例如文档目录) 使用PropertyListEncoder将可编码对象保存到文件中 ...

    iOS开发中数据的存储

    print("Error reading plist: \(error)") } } // 写入Plist let dictionary: [String: Any] = ["key": "value"] let propertyListData = try NSPropertyListSerialization.data(withPropertyList: dictionary, ...

    iOS工具一键JSON转OC数据模型类

    "hobbies": ["reading", "gaming"], "address": { "street": "123 Main St", "city": "New York" } } ``` 这个工具会生成如下的OC数据模型类: ```objc @interface Person : NSObject , NSCoding> @property...

    ios app可以从apns的反馈服务器获取无效deviceTocken

    在iOS应用开发中,Apple Push Notification service (APNs) 是苹果提供的一项服务,允许开发者向用户的设备发送远程通知。然而,有时由于各种原因(如设备卸载应用、重置设备或更换了deviceToken),APNs可能无法...

    IOS 播放自定义音效 系统音效 背景音乐 震动

    let audioFile = try AVAudioFile(forReading: soundURL) let audioFormat = audioFile.fileFormat let inputNode = audioEngine.inputNode audioEngine.attach(audioPlayerNode) audioEngine.connect...

    iOS.10.Swift.Programming.Cookbook.Solutions.and.Examples.for.iOS.Apps.epub

    You will also learn the latest and greatest techniques for reading, writing and searching for data in your iOS apps, with Core Data. Finally, it shows you how to test changes to the user interface ...

    Mastering iOS 10 Programming [2017]

    You will be reading a mix of thorough background information and practical examples, so you'll know how to make use of a certain technique right away while you also get a great understanding of the ...

    lijiang1024#ReadingNotes#Note9_iOS_View加载流程1

    参考资料:

    Beginning Swift Games Development for iOS(Apress,2015)

    After reading and using this book, you'll have the skills and the code to build your first 2D and then 3D game app that you can run on any iOS enabled device and perhaps sell in the Apple iTunes App ...

    OS X and iOS Kernel Programming

    We hope you have as much fun reading this book as we have enjoyed writing it. The book was written for anyone interested in Apple’s iOS and Mac OS X operating systems, with a focus on practical ...

    【IOS】完整的plist读取demo

    NSLog(@"Error reading plist: %@", error); } else { // 使用解析出的字典进行操作 NSLog(@"%@", dict); } } else { NSLog(@"Plist file not found."); } ``` 3. 考虑到性能和错误处理,建议在实际项目中...

    NFCReader:在iOS上扫描和解码NFC标签

    NFC阅读器 在iOS上扫描和解码NFC标签 特征 扫描NFC标签(有关支持的标签,请参见下文) 扫描自定义NFC标签 支持的标签 ... 将Near Field Communication Tag Reading添加到功能。 向Info.plist添加

    file-read-write-http.zip_IOS HTTP_file read_urlreadwrite

    print("Error reading file: \(error)") } } ``` 对于文件写入,你可以选择覆盖现有文件或追加内容。使用`write(to:atomically:)`方法可以将字符串或数据写入文件。确保在写入后关闭文件,以确保数据正确保存。 ...

Global site tag (gtag.js) - Google Analytics