【OC语法快览】一、方法调用

简介: 调用方法 [object method];[object methodWithInput:input];output = [object methodWithOutput];output = [object methodWithInputAndOutput:inp...



调用方法


[object  method];
[object methodWithInput:input];

output = [object methodWithOutput];
output = [object methodWithInputAndOutput:input];

id myObject = [NSString string];
NSString* myString = [NSString string];



嵌套消息


function1 ( function2() );
[NSString stringWithFormat:[prefs format]];





多个输入参数的方法


-(BOOL)writeToFile:(NSString *)path atomically:(BOOL)useAuxiliaryFile;
BOOL result = [myData writeToFile:@"/tmp/log.txt"atomically:NO];




原文:learn_objective_C part 1


相关文章
|
7月前
|
编译器 C++
OC如何实现函数参数对象的地址传
OC如何实现函数参数对象的地址传
43 0
|
缓存 Java iOS开发
OC中动态方法解析
OC中动态方法解析
51 1
【Groovy】Groovy 方法调用 ( Groovy 构造函数中为成员赋值 | Groovy 函数的参数传递与键值对参数 | 完整代码示例 )
【Groovy】Groovy 方法调用 ( Groovy 构造函数中为成员赋值 | Groovy 函数的参数传递与键值对参数 | 完整代码示例 )
390 0
【Groovy】Groovy 方法调用 ( Groovy 构造函数中为成员赋值 | Groovy 函数的参数传递与键值对参数 | 完整代码示例 )
【Groovy】Groovy 方法调用 ( 使用闭包创建接口对象 | 接口中有一个函数 | 接口中有多个函数 )
【Groovy】Groovy 方法调用 ( 使用闭包创建接口对象 | 接口中有一个函数 | 接口中有多个函数 )
288 0
【Groovy】Groovy 方法调用 ( 使用闭包创建接口对象 | 接口中有一个函数 | 接口中有多个函数 )
|
iOS开发
OC中的内省方法(Introspection)
OC中的内省方法(Introspection)
157 0