我是靠谱客的博主 懦弱硬币,最近开发中收集的这篇文章主要介绍Objective-C中@encode的使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

今天看Mansonry的代码时,碰到一个生僻的关键字(也许只是自己没用过)。:-)

 

@encode  => 将给定类型编码为内部表示的字符串。

为了方便自己查阅,顺便也写个小例子,贴在这里,实践出真知嘛。

 

    NSLog(@"UIViewController : %s", @encode(UIViewController));

    NSLog(@"CGRect : %s", @encode(CGRect));

    NSLog(@"int : %s", @encode(int));

    NSLog(@"float : %s", @encode(float));

    NSLog(@"double : %s", @encode(double));

    NSLog(@"BOOL : %s", @encode(BOOL));

    NSLog(@"long : %s", @encode(long));

    NSLog(@"short : %s", @encode(short));

 

    NSDictionary *numberDic = @{@"double"  : [NSNumber numberWithDouble:1.00f],

                                @"float"   : [NSNumber numberWithFloat:2.0f],

                                @"int"     : [NSNumber numberWithInt:2],

                                @"long"    : [NSNumber numberWithLong:2],

                                @"bool"    : [NSNumber numberWithBool:YES],

                                @"short"   : [NSNumber numberWithShort:2],

                                };

    for(NSString *key in numberDic){

        NSNumber* value = [numberDic valueForKey:key];

        const char * pObjCType = [value objCType];

        if (strcmp(pObjCType, @encode(double))  == 0) {

            NSLog(@"double : %@", value);

        }

        if (strcmp(pObjCType, @encode(float))  == 0) {

            NSLog(@"float : %@", value);

        }

        if (strcmp(pObjCType, @encode(int))  == 0) {

            NSLog(@"int : %@", value);

        }

        if (strcmp(pObjCType, @encode(long))  == 0) {

            NSLog(@"long : %@", value);

        }

        if (strcmp(pObjCType, @encode(bool))  == 0) {

            NSLog(@"bool : %@", value);

        }

        if (strcmp(pObjCType, @encode(short))  == 0) {

            NSLog(@"short : %@", value);

        }

    }

 

这段代码的输出如下:

2016-11-04 16:18:56.316 test[10003:251554] UIViewController : {UIViewController=#}

2016-11-04 16:18:56.316 test[10003:251554] CGRect : {CGRect={CGPoint=dd}{CGSize=dd}}

2016-11-04 16:18:56.316 test[10003:251554] int : i

2016-11-04 16:18:56.316 test[10003:251554] float : f

2016-11-04 16:18:56.316 test[10003:251554] double : d

2016-11-04 16:18:56.317 test[10003:251554] BOOL : B

2016-11-04 16:18:56.317 test[10003:251554] long : q

2016-11-04 16:18:56.317 test[10003:251554] short : s

2016-11-04 16:18:57.268 test[10003:251554] double : 1

2016-11-04 16:18:57.268 test[10003:251554] float : 2

2016-11-04 16:18:57.268 test[10003:251554] int : 2

2016-11-04 16:18:57.268 test[10003:251554] long : 2

2016-11-04 16:18:57.269 test[10003:251554] short : 2

 

从上我们看出 int 被编码为 i;float为f;等等。

这里遇到一个问题: [NSNumber numberWithBool:YES] 在调用 objCType 方法时,返回的是"c", 而不是"B", 所以下面的if判断并没有打印bool相关的输出。 针对这个问题,我做了查找,"B"表示的是一个C++ bool,Ojbective-C中BOOL确切的说是singned char, 所以调用objCType时返回的是"c"。

转载于:https://www.cnblogs.com/zhizi-material/p/6031037.html

最后

以上就是懦弱硬币为你收集整理的Objective-C中@encode的使用的全部内容,希望文章能够帮你解决Objective-C中@encode的使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部