首页
社区
课程
招聘
[原创]Objective-C基本分析法
发表于: 2012-11-20 21:39 13676

[原创]Objective-C基本分析法

2012-11-20 21:39
13676

以Hello World程序为例:

#import <foundation/foundation.h>


@interface SaySomething :NSObject
- (void) say:(NSString *)phrase;
@end

@implementation SaySomething

- (void) say:(NSString *)phrase{
    printf("%s\n", [phrase UTF8String]);
}

@end

int main(){
    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
    SaySomething *saySomething = [[SaySomething alloc] init];
    [saySomething say:@"Hello World!"];
    [saySomething release];
    [pool release];
    return 0;
}</foundation>
#import <foundation/foundation.h>

@interface SaySomething :NSObject
- (void) say:(NSString *)phrase;
@end

@implementation SaySomething

- (void) say:(NSString *)phrase{
    printf("%s\n", [phrase UTF8String]);
}

@end

//int main(){
//    NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
//    SaySomething *saySomething = [[SaySomething alloc] init];
//    [saySomething say:@"Hello World!"];
//    [saySomething release];
//    [pool release];
//    return 0;
//}

int main(){
    objc_msgSend(objc_msgSend(objc_getClass("NSAutoreleasePool"), NSSelectorFromString(@"alloc")), NSSelectorFromString(@"init"));
    objc_msgSend(objc_msgSend(objc_msgSend(objc_getClass("SaySomething"), NSSelectorFromString(@"alloc")), NSSelectorFromString(@"init")), NSSelectorFromString(@"say:"), @"Hello World!");
    return 0;
}

iMAC:ios$ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/arm-apple-darwin10-llvm-gcc-4.2 -o hello hello.m -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/ -framework Foundation -lobjc

iMAC:ios$ otool -L hello
hello:
/System/Library/Frameworks/Foundation.framework/Foundation (compatibility version 300.0.0, current version 992.0.0)
/usr/lib/libobjc.A.dylib (compatibility version 1.0.0, current version 228.0.0) //包含这个文件则为objective-c编译的文件
/usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 7.0.0)
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 173.8.0)
/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation (compatibility version 150.0.0, current version 793.0.0)

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

收藏
免费 6
支持
分享
最新回复 (4)
雪    币: 1895
活跃值: (1642)
能力值: ( LV5,RANK:60 )
在线值:
发帖
回帖
粉丝
2
楼主可以直接列出object-c与C和C++的不同点会更加受人青睐,这样的纯object-c新手语法教学帖看帖不如去看书。又或者楼主发些看书的感悟和历程更好。个人建议,不喜勿喷。
2012-11-20 22:49
0
雪    币: 1413
活跃值: (401)
能力值: (RANK:270 )
在线值:
发帖
回帖
粉丝
3
1. 有本书叫From C++ to Objective-C,还不错

2. 要从逆向的角度写两个语言的不同,很难,也不适合入门

3. 建议不要把C、C++、Obj-C看成同一族语言,这样会对正确理解其中的一些概念有好处。例如,Obj-C中,消息的概念决定了很多独特的特性。
2012-11-21 20:14
0
雪    币: 537
活跃值: (1497)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4
学习了。。。
2013-3-25 23:26
0
雪    币: 1234
活跃值: (297)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
牛人,学习了。
2013-9-11 16:56
0
游客
登录 | 注册 方可回帖
返回
//