温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

iOS全局变量设置

发布时间:2020-07-08 15:09:52 来源:网络 阅读:589 作者:leeyulong 栏目:移动开发

//  AppConfig.h
   创建一个.h文件作为全局设置
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>

#define DARK_BACKGROUND  [UIColor colorWithPatternImage:[UIImage p_w_picpathNamed:@"tableview"]]
#define LIGHT_BACKGROUND [UIColor colorWithRed:250.0/255.0 green:250.0/255.0 blue:250.0/255.0 alpha:1.0]
#define RGBACOLOR(r,g,b,a) [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:(a)]

#define IOS_VERSION [[[UIDevice currentDevice] systemVersion] floatValue]

//新浪微博设置
#define kSinaAppKey            @"3835906094"
#define kSinaAppSecret         @"f7efce5aec66546a192a55dc4ff0ca58"
#define kSinaAppRedirectURI    @"http://sns.whalecloud.com/sina2/callback"
#define kSinaSSoCallbackScheme @"sinaweibosso.3835906094"

//腾讯微博设置
#define kQQAppKey             @"3835906094"
#define kQQAppSecret          @"f7efce5aec66546a192a55dc4ff0ca58"
#define kQQAppRedirectURI     @"http://sns.whalecloud.com/sina2/callback"

//全局应用
#define MyApp ((AppDelegate*)[[UIApplication sharedApplication] delegate])

//友盟统计 -- 用户
#define UMENG_APPKEY @"51b43bdf56240b6ef4009a3d"

//推广渠道ID
#define APP_CHANNELID @"AppStore"
//AppStore, 91, Weiphone

//AppKey
//微信AppID:wx959223c1aec3c4aa
#define WEIXIN_APPID @"wx959223c1aec3c4aa"

//判断是否为iPhone5
#define iPhone5 ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(640, 1136), [[UIScreen mainScreen] currentMode].size) : NO)

//判断是否为iOS7
#define iOS7 ((floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1))

//判断是否为iPad
static BOOL isDeviceIPad() {
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 30200
   if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
       return YES;
   }
#endif
   return NO;
}

//文本对齐方式
#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 60000
#define TextAlignmentCenter NSTextAlignmentCenter
#define TextAlignmentLeft   NSTextAlignmentLeft
#define TextAlignmentRight  NSTextAlignmentRight
#else
#define TextAlignmentCenter UITextAlignmentCenter
#define TextAlignmentLeft   UITextAlignmentLeft
#define TextAlignmentRight  UITextAlignmentRight
#endif

//文本截取方式
#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 60000
#define LineBreakModeWordWrap          NSLineBreakByWordWrapping
#define LineBreakModeCharacterWrap     NSLineBreakByCharWrapping
#define LineBreakModeClip              NSLineBreakByClipping
#define LineBreakModeHeadTruncation    NSLineBreakByTruncatingHead
#define LineBreakModeTailTruncation    NSLineBreakByTruncatingTail,
#define LineBreakModeMiddleTruncation  NSLineBreakByTruncatingMiddle
#else
#define LineBreakModeWordWrap          UILineBreakModeWordWrap
#define LineBreakModeCharacterWrap     UILineBreakModeCharacterWrap
#define LineBreakModeClip              UILineBreakModeClip
#define LineBreakModeHeadTruncation    UILineBreakModeHeadTruncation
#define LineBreakModeTailTruncation    UILineBreakModeTailTruncation
#define LineBreakModeMiddleTruncation  UILineBreakMo
#endif

//下面的代码是使用GCD的一个模板
//dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
//    // switch to a background thread and perform your expensive operation
//
//    dispatch_async(dispatch_get_main_queue(), ^{
//        // switch back to the main thread to update your UI
//
//    });
//});


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI