一、概念
二、代码
/*
Getting Started 新手指引
>>>Guides 指南(一般都是看这个,如何去学习)
>>>Refaerence 参考资料 (一般都是看这个)
Release Notes 发布说明
SampleCode 示例代码
TechnicalNotes 技术说明
TechnicalQ&A 常见技术问答
Video WWDC的视频
*/
#pragma mark - 代码
#import <Foundation/Foundation.h>
#pragma mark 类
#pragma mark - main函数
int main(int argc, const char * argv[])
{
/*
NSString
@interface NSString : NSObject <NSCopying, NSMutableCopying, NSSecureCoding>
Description
The NSString class and its mutable subclass, NSMutableString, provide an extensive set of APIs for working with strings, including methods for comparing, searching, and modifying strings. NSString objects are used extensively throughout Foundation and other Cocoa frameworks, serving as the basis for all textual and linguistic functionality on the platform.
NSString is “toll-free bridged” with its Core Foundation counterpart, CFStringRef. See “Toll-Free Bridging” for more information.
Availability iOS (2.0 and later), macOS (10.0 and later), tvOS (9.0 and later), watchOS (2.0 and later)
*/
[NSString stringWithFormat:<#(nonnull NSString *), ...#>];
/*
描述信息 description
可用性 Availability
声明位置 declared in
使用参考 Reference
学习指南
实例代码
*/
/*
官方文档搜索的时候
热门点击
API Reference API使用参考
SDK Guides 学习指南
Sample Code 实例代码
*/
/*
1.start Developing iOS Apps Today --- 阅读
马上着手开发iOS应用程序,建立基本iOS开发概览
2.iOS Technology Overview
iOS技术概览,阅读这个文档的目的 和 检测标准是 ,
遇到具体问题,知道应该去看哪方面的文档
3.iOS Humen Interface Guidelines
iOS 人机交互指南,阅读这个文档的目的 和检测标准是 ,
看到任何一个APP,你可以知道它的任何一个UI是系统空间,还是自自定义控件,他的层次关系等等.
4.Programming With Objective-C --- 阅读
学习OC基础语法,阅读这个文档的目的 和检测标准是 ,
看得懂基本的Objective-C代码,方便后面的学习 和阅读各种示例代码
5.App Programming Guide for iOS
iOS 应用程序编程指南,介绍的就是开发一个APP的完整流程,包含APP的声明周期,休眠,激活等等
阅读这个文档的目的 和 检测标准是,
了解全部流程 和 很多细节问题
6.View Programming Guide for iOS
7.View Controller Programming Guide for iOS
阅读 这两个文档的目的 和检测标准是, 深刻理解 什么是view,什么是View Controller,理解什么情况用View,什么情况用ViewController
*/
return 0;
}
通过option键 + 点击
双击方法
官方文档搜索注意
![Uploading image_934796.png . . .]