//c語方的方法
void sayHello(){
printf("Hello OC");
}
int main(int argc, char * argv[]) {
sayHello();//調用c語言的方法
NSString *str=[NSString stringWithFormat:@"Hello %d",100]; //調用對象的靜态方法,他的方法調用通過中括号括起來的,然後後面跟相關參數
NSLog(@"%@",str);
//c語方的方法
void sayHello(){
printf("Hello OC");
}
int main(int argc, char * argv[]) {
sayHello();//調用c語言的方法
NSString *str=[NSString stringWithFormat:@"Hello %d",100]; //調用對象的靜态方法,他的方法調用通過中括号括起來的,然後後面跟相關參數
NSLog(@"%@",str);