- #import <Foundation/Foundation.h>
- //#include <stdio.h>
- int main()
- {
- //char *str = "jack-love-rose";
- NSString *str = @"jack-love-rose";
- /*
- for (int i = 0; i < 8; i++) {
- printf("%c",str[i]);
-
- }
- */
- NSLog(@"%@", str); // 用OC的方法一行搞定
- }
- // 记住OC是面向对象的,能用OC尽量用OC。
复制代码 |
|