本帖最后由 崔石炫 于 2014-10-21 15:59 编辑
- #import <Foundation/Foundation.h>
- int main(int argc, const char * argv[])
- {
- NSString *str = @"abc1234defghijkl";
-
- NSUInteger length = [str length];
- NSUInteger i;
- unichar c;
-
-
- for(i = 0 ; i < length ; i++)
- {
- c = [str characterAtIndex:i];
- NSLog(@"%c" , c);
- }
-
-
- return 0;
- }
复制代码
|