当前位置:  编程技术>移动开发
本页文章导读:
    ▪宏的高级使用-VA_ARGS_ _FILE_ _FUNCTION_等        宏的高级使用--##,__VA_ARGS__, __FILE__, __FUNCTION__等 先说一下本文中会提到的内容:##,__VA_ARGS__, __FILE__, __LINE__ , __FUNCTION__等宏变量:先举一个例子,会用到上面这些宏: [cpp] view plai.........
    ▪ 等候转圈界面-NSTimer(定时器) + UIActivityIndicatorView        等待转圈界面-NSTimer(定时器) + UIActivityIndicatorView 。h里面 #import <UIKit/UIKit.h> @interface LogInViewController :UIViewController {    UIActivityIndicatorView *activityIndicatorView;      } - (IBAction)login:(.........
    ▪ 'The NIB data is invalid.' foruncaught exception 'NSInternalInconsistencyException'       'The NIB data is invalid.' foruncaught exception 'NSInternalInconsistencyException'I faced this issue in a very special situation.  To debugging the iOS7 issue in my XCode4.6, I copied the iOS7 SDK from xcode5 application into xcode4.6.  After that,.........

[1]宏的高级使用-VA_ARGS_ _FILE_ _FUNCTION_等
    来源: 互联网  发布时间: 2014-02-18
宏的高级使用--##,__VA_ARGS__, __FILE__, __FUNCTION__等

先说一下本文中会提到的内容:##,__VA_ARGS__, __FILE__, __LINE__ , __FUNCTION__等
宏变量:
先举一个例子,会用到上面这些宏:

[cpp] view plaincopy
 
  • #define myprintf(...) printk("[lch]:File:%s, Line:%d, Function:%s," \  
  •      __VA_ARGS__, __FILE__, __LINE__ ,__FUNCTION__);  
  • 此处的 #define 的作用是将 myprintf( )换成后面那一大串的内容,而括号内 ... 的内容原样抄写在 __VA_ARGS__ 的位置。最终输出如下:

    [lch]:File:arch/arm/mach-omap2/board-omap3wscec-camera.c, Line:163, Function:beagle_cam_init,camera init!

    解析:

    1)__VA_ARGS__:总体来说就是将左边宏中 ... 的内容原样抄写在右边 __VA_ARGS__ 所在的位置。它是一个可变参数的宏,是新的C99规范中新增的,目前似乎只有gcc支持(VC从VC2005开始支持)。要注意的是,printf 的输出格式是括号内左边是字符串,右边是变量,而且右变量与左输出格式是一一对应的。所以在上面那个例子中, __VA_ARGS__只能是一些不含任何变量的字符串常量。因为上面的例子中若__VA_ARGS__含有变量,整个printf的输出与变量便不能一一对应,输出会出错。

    如果仅仅是替换函数名,可用如下方式,此时对__VA_ARGS__无任何特殊要求:#define myprintf(...) printk( __VA_ARGS__),在调试程序时可以这样用:

    [cpp] view plaincopy
     
  • #ifndef LOG_NDEBUG_FUNCTION  
  • #define LOGFUNC(...) ((void)0)  
  • #else  
  • #define LOGFUNC(...) (printk(__VA_ARGS__))  
  • #endif  
  • 2) __FILE__ :宏在预编译时会替换成当前的源文件名
    3) __LINE__:宏在预编译时会替换成当前的行号
    4) __FUNCTION__:宏在预编译时会替换成当前的函数名称
    5)类似的宏还有 __TIME__,__STDC__, __TIMESTAMP__等,就完全当一个变量来使用即可。

    宏连接符##:
    举个例子:宏定义为#define XNAME(n) x##n,代码为:XNAME(4),则在预编译时,宏发现XNAME(4)与XNAME(n)匹配,则令 n 为 4,然后将右边的n的内容也变为4,然后将整个XNAME(4)替换为 x##n,亦即 x4,故 最终结果为 XNAME(4) 变为 x4.
    代码如下:

    [cpp] view plaincopy
     
  • #include <stdio.h>  
  • #define XNAME(n) x ## n  
  • #define PRINT_XN(n) printf("x" #n " = %d/n", x ## n);  
  • int main(void)  
  • {  
  • int XNAME(1) = 14; // becomes int x1 = 14;  
  • int XNAME(2) = 20; // becomes int x2 = 20;  
  • PRINT_XN(1); // becomes printf("x1 = %d,", x1);  
  • PRINT_XN(2); // becomes printf("x2 = %d/n", x2);  
  • return 0;  
  • }  
  • 输出为:x1 = 14, x2 = 20


    PS:编译过程:
    1,扫描解析文件
    2,预处理(宏在此时处理,该替换的文字会被替换)
    3,对处理过的源代码进行汇编,输出汇编语言的代码(C语言的控制流程被处理)
    4,编译为二进制目标文件
    5,与程序库进行链接,输出最终的程序文件
    (宏 和 C语言在不同的阶段处理执行)


        
    [2] 等候转圈界面-NSTimer(定时器) + UIActivityIndicatorView
        来源: 互联网  发布时间: 2014-02-18
    等待转圈界面-NSTimer(定时器) + UIActivityIndicatorView

    。h里面

    #import <UIKit/UIKit.h>

    @interface LogInViewController :UIViewController {


       UIActivityIndicatorView *activityIndicatorView;

        

    }

    - (IBAction)login:(id)sender;

    @end

    ----------------------

    。m里面

    //登陆

    - (IBAction)login:(id)sender {

        

        [selfinitaAtivityIndicatorView];//这里一定要初始化,不然显示不出来那个等待转圈的view,我忘了初始化了,显示不出来还一直以为是定时器写错了。。下次记住了,想用对象,首先就得把这个对象初始化

        [activityIndicatorViewstartAnimating];//开始动画

        

    //    定时器(设置时间为3秒)

        [NSTimerscheduledTimerWithTimeInterval:3.0target:selfselector:@selector(timerFired:)userInfo:nilrepeats:NO];

    //    [[NSRunLoop  currentRunLoop] addTimer:myTimer forMode:NSDefaultRunLoopMode];

        

    //    [myTimer setFireDate:[NSDate distantPast]];

        

      

    }


    //定时器结束的时候调用的方法

    - (IBAction)timerFired:(id)sender{

        

       [activityIndicatorView stopAnimating];//结束动画


        NavViewController *navigationController = [[NavViewControlleralloc] initWithRootViewController:[[OneViewControlleralloc] initWithNibName:@"one_ipad"bundle:nil]];

        MenuViewController *menuController = [[MenuViewControlleralloc] init];

       REFrostedViewController *frostedViewController = [[REFrostedViewControlleralloc] initWithContentViewController:navigationControllermenuViewController:menuController];//菜单

        frostedViewController.direction =REFrostedViewControllerDirectionLeft;

        frostedViewController.liveBlurBackgroundStyle =REFrostedViewControllerLiveBackgroundStyleLight;

        

        [selfpresentViewController:frostedViewController animated:NOcompletion:nil];

      

    }


    //等待转圈的view

    -(void) initaAtivityIndicatorView {

        

        //创建UIActivityIndicatorView背底半透明View

        UIView *view = [[UIViewalloc] initWithFrame:CGRectMake(0,0,self.view.bounds.size.width,self.view.bounds.size.height)];

        [viewsetTag:108];

        [view setBackgroundColor:[UIColorblackColor]];

        [viewsetAlpha:0.5];

        [self.viewaddSubview:view];

        

        activityIndicatorView = [[UIActivityIndicatorViewalloc] initWithFrame:CGRectMake(0,0, 37,37)];//设置对象的位置,大小是固定不变的。WhiteLarge为37 * 37,White为20 * 20

        //[activityIndicatorViewsetCenter:self.view.center];//设置位置居中

        

        [activityIndicatorView setCenter:CGPointMake(500, 400)];//指定进度轮中心点
             [activityIndicatorViewsetActivityIndicatorViewStyle:UIActivityIndicatorViewStyleWhiteLarge];//设置Style

        activityIndicatorView.color = [UIColorredColor];//设置颜色

        [view addSubview:activityIndicatorView];

        

        

    }



    ----效果图:


    -------




        
    [3] 'The NIB data is invalid.' foruncaught exception 'NSInternalInconsistencyException'
        来源: 互联网  发布时间: 2014-02-18
    'The NIB data is invalid.' foruncaught exception 'NSInternalInconsistencyException'

    I faced this issue in a very special situation.  To debugging the iOS7 issue in my XCode4.6, I copied the iOS7 SDK from xcode5 application into xcode4.6.  After that, I always met this error when running my App on the IPAD1 device with iOS5.1.  The App works fine on any other iOS6 above devices.

    So if I remove iOS7 SDK folder from /Application/Xcode/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs, this exception will disappear.


    I searched internet, most people met the issue just because "use Autolayout" was checked, but no one have the same issue with me above, so record it here for your reference.

    Uncheck the "use Autolayout" highlighted in the below image. Xcode 4.5 enables this property by default for the new nib files you add into your project. Unchecking the autolayout check box solved the problem



        
    最新技术文章:
    ▪Android开发之登录验证实例教程
    ▪Android开发之注册登录方法示例
    ▪Android获取手机SIM卡运营商信息的方法
    ▪Android实现将已发送的短信写入短信数据库的...
    ▪Android发送短信功能代码
    ▪Android根据电话号码获得联系人头像实例代码
    ▪Android中GPS定位的用法实例
    ▪Android实现退出时关闭所有Activity的方法
    ▪Android实现文件的分割和组装
    ▪Android录音应用实例教程
    ▪Android双击返回键退出程序的实现方法
    ▪Android实现侦听电池状态显示、电量及充电动...
    ▪Android获取当前已连接的wifi信号强度的方法
    ▪Android实现动态显示或隐藏密码输入框的内容
    ▪根据USER-AGENT判断手机类型并跳转到相应的app...
    ▪Android Touch事件分发过程详解
    ▪Android中实现为TextView添加多个可点击的文本
    ▪Android程序设计之AIDL实例详解
    ▪Android显式启动与隐式启动Activity的区别介绍
    ▪Android按钮单击事件的四种常用写法总结
    ▪Android消息处理机制Looper和Handler详解
    ▪Android实现Back功能代码片段总结
    ▪Android实用的代码片段 常用代码总结
    ▪Android实现弹出键盘的方法
    ▪Android中通过view方式获取当前Activity的屏幕截...
    ▪Android提高之自定义Menu(TabMenu)实现方法
    ▪Android提高之多方向抽屉实现方法
    ▪Android提高之MediaPlayer播放网络音频的实现方法...
    ▪Android提高之MediaPlayer播放网络视频的实现方法...
    ▪Android提高之手游转电视游戏的模拟操控
     


    站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3