├── XMGStatusBarHUD ├── XMGStatusBarHUD.bundle │ ├── error.png │ ├── success.png │ ├── error@2x.png │ └── success@2x.png ├── XMGStatusBarHUD.h └── XMGStatusBarHUD.m ├── README.md ├── XMGStatusBarHUDDemo ├── XMGStatusBarHUDDemo.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── project.pbxproj ├── XMGStatusBarHUDDemo │ ├── ViewController.h │ ├── AppDelegate.h │ ├── main.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── ViewController.m │ ├── Info.plist │ ├── AppDelegate.m │ └── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard └── XMGStatusBarHUDDemoTests │ ├── Info.plist │ └── XMGStatusBarHUDDemoTests.m ├── .gitignore └── LICENSE /XMGStatusBarHUD/XMGStatusBarHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chglog/XMGStatusBarHUD/HEAD/XMGStatusBarHUD/XMGStatusBarHUD.bundle/error.png -------------------------------------------------------------------------------- /XMGStatusBarHUD/XMGStatusBarHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chglog/XMGStatusBarHUD/HEAD/XMGStatusBarHUD/XMGStatusBarHUD.bundle/success.png -------------------------------------------------------------------------------- /XMGStatusBarHUD/XMGStatusBarHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chglog/XMGStatusBarHUD/HEAD/XMGStatusBarHUD/XMGStatusBarHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /XMGStatusBarHUD/XMGStatusBarHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chglog/XMGStatusBarHUD/HEAD/XMGStatusBarHUD/XMGStatusBarHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # XMGStatusBarHUD 2 | 简单易用的状态栏指示器大框架 3 | 4 | ## 显示成功信息 5 | ```objc 6 | [XMGStatusBarHUD showSuccess:@"加载数据成功!"]; 7 | ``` 8 | 9 | ## 显示失败信息 10 | ```objc 11 | [XMGStatusBarHUD showError:@"登录失败!"]; 12 | ``` 13 | 14 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemo/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // XMGStatusBarHUD 4 | // 5 | // Created by xiaomage on 15/9/21. 6 | // Copyright (c) 2015年 xiaomage. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemo/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // XMGStatusBarHUDDemo 4 | // 5 | // Created by xiaomage on 15/9/21. 6 | // Copyright (c) 2015年 xiaomage. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemo/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // XMGStatusBarHUDDemo 4 | // 5 | // Created by xiaomage on 15/9/21. 6 | // Copyright (c) 2015年 xiaomage. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | build/ 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata 13 | *.xccheckout 14 | *.moved-aside 15 | DerivedData 16 | *.hmap 17 | *.ipa 18 | *.xcuserstate 19 | 20 | # CocoaPods 21 | # 22 | # We recommend against adding the Pods directory to your .gitignore. However 23 | # you should judge for yourself, the pros and cons are mentioned at: 24 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 25 | # 26 | #Pods/ 27 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /XMGStatusBarHUD/XMGStatusBarHUD.h: -------------------------------------------------------------------------------- 1 | // 2 | // XMGStatusBarHUD.h 3 | // XMGStatusBarHUD 4 | // 5 | // Created by xiaomage on 15/9/21. 6 | // Copyright (c) 2015年 xiaomage. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface XMGStatusBarHUD : NSObject 12 | 13 | /** 14 | * 显示图片+文字信息 15 | */ 16 | + (void)showImageName:(NSString *)imageName text:(NSString *)text; 17 | 18 | /** 19 | * 显示图片+文字信息 20 | */ 21 | + (void)showImage:(UIImage *)image text:(NSString *)text; 22 | 23 | /** 24 | * 显示成功信息 25 | */ 26 | + (void)showSuccess:(NSString *)text; 27 | 28 | /** 29 | * 显示失败信息 30 | */ 31 | + (void)showError:(NSString *)text; 32 | 33 | /** 34 | * 显示正在处理的信息 35 | */ 36 | + (void)showLoading:(NSString *)text; 37 | 38 | /** 39 | * 显示普通信息 40 | */ 41 | + (void)showText:(NSString *)text; 42 | 43 | /** 44 | * 隐藏 45 | */ 46 | + (void)hide; 47 | @end 48 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemoTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | XMG.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemo/ViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.m 3 | // XMGStatusBarHUD 4 | // 5 | // Created by xiaomage on 15/9/21. 6 | // Copyright (c) 2015年 xiaomage. All rights reserved. 7 | // 8 | 9 | #import "ViewController.h" 10 | #import "XMGStatusBarHUD.h" 11 | 12 | @interface ViewController () 13 | 14 | @end 15 | 16 | @implementation ViewController 17 | 18 | - (IBAction)success { 19 | [XMGStatusBarHUD showSuccess:@"加载数据成功!"]; 20 | } 21 | 22 | - (IBAction)error { 23 | [XMGStatusBarHUD showError:@"登录失败!"]; 24 | } 25 | 26 | - (IBAction)loading { 27 | [XMGStatusBarHUD showLoading:@"正在登录中..."]; 28 | } 29 | 30 | - (IBAction)hide { 31 | [XMGStatusBarHUD hide]; 32 | } 33 | 34 | - (IBAction)normal { 35 | [XMGStatusBarHUD showText:@"随便显示的文字!!!!"]; 36 | } 37 | 38 | - (void)viewDidLoad { 39 | [super viewDidLoad]; 40 | // Do any additional setup after loading the view, typically from a nib. 41 | } 42 | 43 | - (void)didReceiveMemoryWarning { 44 | [super didReceiveMemoryWarning]; 45 | // Dispose of any resources that can be recreated. 46 | } 47 | 48 | @end 49 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemoTests/XMGStatusBarHUDDemoTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // XMGStatusBarHUDDemoTests.m 3 | // XMGStatusBarHUDDemoTests 4 | // 5 | // Created by xiaomage on 15/9/21. 6 | // Copyright (c) 2015年 xiaomage. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface XMGStatusBarHUDDemoTests : XCTestCase 13 | 14 | @end 15 | 16 | @implementation XMGStatusBarHUDDemoTests 17 | 18 | - (void)setUp { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown { 24 | // Put teardown code here. This method is called after the invocation of each test method in the class. 25 | [super tearDown]; 26 | } 27 | 28 | - (void)testExample { 29 | // This is an example of a functional test case. 30 | XCTAssert(YES, @"Pass"); 31 | } 32 | 33 | - (void)testPerformanceExample { 34 | // This is an example of a performance test case. 35 | [self measureBlock:^{ 36 | // Put the code you want to measure the time of here. 37 | }]; 38 | } 39 | 40 | @end 41 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 小码哥 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemo/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | XMG.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemo/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // XMGStatusBarHUDDemo 4 | // 5 | // Created by xiaomage on 15/9/21. 6 | // Copyright (c) 2015年 xiaomage. All rights reserved. 7 | // 8 | 9 | #import "AppDelegate.h" 10 | 11 | @interface AppDelegate () 12 | 13 | @end 14 | 15 | @implementation AppDelegate 16 | 17 | 18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 19 | // Override point for customization after application launch. 20 | return YES; 21 | } 22 | 23 | - (void)applicationWillResignActive:(UIApplication *)application { 24 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 25 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 26 | } 27 | 28 | - (void)applicationDidEnterBackground:(UIApplication *)application { 29 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 30 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 31 | } 32 | 33 | - (void)applicationWillEnterForeground:(UIApplication *)application { 34 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 35 | } 36 | 37 | - (void)applicationDidBecomeActive:(UIApplication *)application { 38 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application { 42 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 43 | } 44 | 45 | @end 46 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /XMGStatusBarHUD/XMGStatusBarHUD.m: -------------------------------------------------------------------------------- 1 | // 2 | // XMGStatusBarHUD.m 3 | // XMGStatusBarHUD 4 | // 5 | // Created by xiaomage on 15/9/21. 6 | // Copyright (c) 2015年 xiaomage. All rights reserved. 7 | // 8 | 9 | #import "XMGStatusBarHUD.h" 10 | 11 | @implementation XMGStatusBarHUD 12 | 13 | static UIWindow *window_; 14 | static NSTimer *timer_; 15 | /** HUD控件的高度 */ 16 | static CGFloat const XMGWindowH = 20; 17 | /** HUD控件的动画持续时间(出现\隐藏) */ 18 | static CGFloat const XMGAnimationDuration = 0.25; 19 | /** HUD控件默认会停留多长时间 */ 20 | static CGFloat const XMGHUDStayDuration = 1.5; 21 | 22 | + (void)showImage:(UIImage *)image text:(NSString *)text 23 | { 24 | // 停止之前的定时器 25 | [timer_ invalidate]; 26 | 27 | // 创建窗口 28 | window_.hidden = YES; // 先隐藏之前的window 29 | window_ = [[UIWindow alloc] init]; 30 | window_.backgroundColor = [UIColor blackColor]; 31 | window_.windowLevel = UIWindowLevelAlert; 32 | window_.frame = CGRectMake(0, - XMGWindowH, [UIScreen mainScreen].bounds.size.width, XMGWindowH); 33 | window_.hidden = NO; 34 | 35 | // 添加按钮 36 | UIButton *button = [[UIButton alloc] init]; 37 | button.frame = window_.bounds; 38 | // 文字 39 | [button setTitle:text forState:UIControlStateNormal]; 40 | [button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; 41 | button.titleLabel.font = [UIFont systemFontOfSize:13]; 42 | // 图片 43 | if (image) { 44 | [button setImage:image forState:UIControlStateNormal]; 45 | button.imageEdgeInsets = UIEdgeInsetsMake(0, 0, 0, 5); 46 | button.titleEdgeInsets = UIEdgeInsetsMake(0, 5, 0, 0); 47 | } 48 | [window_ addSubview:button]; 49 | 50 | // 动画 51 | [UIView animateWithDuration:XMGAnimationDuration animations:^{ 52 | CGRect frame = window_.frame; 53 | frame.origin.y = 0; 54 | window_.frame = frame; 55 | }]; 56 | 57 | // 开启一个新的定时器 58 | timer_ = [NSTimer scheduledTimerWithTimeInterval:XMGHUDStayDuration target:self selector:@selector(hide) userInfo:nil repeats:NO]; 59 | } 60 | 61 | + (void)showImageName:(NSString *)imageName text:(NSString *)text 62 | { 63 | [self showImage:[UIImage imageNamed:imageName] text:text]; 64 | } 65 | 66 | + (void)showSuccess:(NSString *)text 67 | { 68 | [self showImageName:@"XMGStatusBarHUD.bundle/success" text:text]; 69 | } 70 | 71 | + (void)showError:(NSString *)text 72 | { 73 | [self showImageName:@"XMGStatusBarHUD.bundle/error" text:text]; 74 | } 75 | 76 | + (void)showText:(NSString *)text 77 | { 78 | [self showImage:nil text:text]; 79 | } 80 | 81 | + (void)showLoading:(NSString *)text 82 | { 83 | // 停止之前的定时器 84 | [timer_ invalidate]; 85 | timer_ = nil; 86 | 87 | // 创建窗口 88 | window_.hidden = YES; // 先隐藏之前的window 89 | window_ = [[UIWindow alloc] init]; 90 | window_.backgroundColor = [UIColor blackColor]; 91 | window_.windowLevel = UIWindowLevelAlert; 92 | window_.frame = CGRectMake(0, - XMGWindowH, [UIScreen mainScreen].bounds.size.width, XMGWindowH); 93 | window_.hidden = NO; 94 | 95 | // 添加按钮 96 | UIButton *button = [[UIButton alloc] init]; 97 | button.frame = window_.bounds; 98 | // 文字 99 | [button setTitle:text forState:UIControlStateNormal]; 100 | [button setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; 101 | button.titleLabel.font = [UIFont systemFontOfSize:13]; 102 | [window_ addSubview:button]; 103 | 104 | // 圈圈 105 | UIActivityIndicatorView *loadingView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite]; 106 | [loadingView startAnimating]; 107 | loadingView.center = CGPointMake(button.titleLabel.frame.origin.x - 60, XMGWindowH * 0.5); 108 | [window_ addSubview:loadingView]; 109 | 110 | // 动画 111 | [UIView animateWithDuration:XMGAnimationDuration animations:^{ 112 | CGRect frame = window_.frame; 113 | frame.origin.y = 0; 114 | window_.frame = frame; 115 | }]; 116 | } 117 | 118 | + (void)hide 119 | { 120 | // 清空定时器 121 | [timer_ invalidate]; 122 | timer_ = nil; 123 | 124 | // 退出动画 125 | [UIView animateWithDuration:XMGAnimationDuration animations:^{ 126 | CGRect frame = window_.frame; 127 | frame.origin.y = - XMGWindowH; 128 | window_.frame = frame; 129 | } completion:^(BOOL finished) { 130 | window_ = nil; 131 | }]; 132 | } 133 | @end 134 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 28 | 37 | 46 | 55 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /XMGStatusBarHUDDemo/XMGStatusBarHUDDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 70DD84191BAFFF590091CA55 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 70DD84181BAFFF590091CA55 /* main.m */; }; 11 | 70DD841C1BAFFF590091CA55 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 70DD841B1BAFFF590091CA55 /* AppDelegate.m */; }; 12 | 70DD841F1BAFFF590091CA55 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 70DD841E1BAFFF590091CA55 /* ViewController.m */; }; 13 | 70DD84221BAFFF590091CA55 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 70DD84201BAFFF590091CA55 /* Main.storyboard */; }; 14 | 70DD84241BAFFF590091CA55 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 70DD84231BAFFF590091CA55 /* Images.xcassets */; }; 15 | 70DD84271BAFFF590091CA55 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 70DD84251BAFFF590091CA55 /* LaunchScreen.xib */; }; 16 | 70DD84331BAFFF590091CA55 /* XMGStatusBarHUDDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 70DD84321BAFFF590091CA55 /* XMGStatusBarHUDDemoTests.m */; }; 17 | 70ED0DD71BB003D400C1CB32 /* XMGStatusBarHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 70ED0DD41BB003D400C1CB32 /* XMGStatusBarHUD.bundle */; }; 18 | 70ED0DD81BB003D400C1CB32 /* XMGStatusBarHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 70ED0DD61BB003D400C1CB32 /* XMGStatusBarHUD.m */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXContainerItemProxy section */ 22 | 70DD842D1BAFFF590091CA55 /* PBXContainerItemProxy */ = { 23 | isa = PBXContainerItemProxy; 24 | containerPortal = 70DD840B1BAFFF590091CA55 /* Project object */; 25 | proxyType = 1; 26 | remoteGlobalIDString = 70DD84121BAFFF590091CA55; 27 | remoteInfo = XMGStatusBarHUDDemo; 28 | }; 29 | /* End PBXContainerItemProxy section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | 70DD84131BAFFF590091CA55 /* XMGStatusBarHUDDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = XMGStatusBarHUDDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 33 | 70DD84171BAFFF590091CA55 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 34 | 70DD84181BAFFF590091CA55 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 35 | 70DD841A1BAFFF590091CA55 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 36 | 70DD841B1BAFFF590091CA55 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 37 | 70DD841D1BAFFF590091CA55 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; 38 | 70DD841E1BAFFF590091CA55 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; 39 | 70DD84211BAFFF590091CA55 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 40 | 70DD84231BAFFF590091CA55 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 41 | 70DD84261BAFFF590091CA55 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 42 | 70DD842C1BAFFF590091CA55 /* XMGStatusBarHUDDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = XMGStatusBarHUDDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 70DD84311BAFFF590091CA55 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 44 | 70DD84321BAFFF590091CA55 /* XMGStatusBarHUDDemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XMGStatusBarHUDDemoTests.m; sourceTree = ""; }; 45 | 70ED0DD41BB003D400C1CB32 /* XMGStatusBarHUD.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = XMGStatusBarHUD.bundle; sourceTree = ""; }; 46 | 70ED0DD51BB003D400C1CB32 /* XMGStatusBarHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMGStatusBarHUD.h; sourceTree = ""; }; 47 | 70ED0DD61BB003D400C1CB32 /* XMGStatusBarHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMGStatusBarHUD.m; sourceTree = ""; }; 48 | /* End PBXFileReference section */ 49 | 50 | /* Begin PBXFrameworksBuildPhase section */ 51 | 70DD84101BAFFF590091CA55 /* Frameworks */ = { 52 | isa = PBXFrameworksBuildPhase; 53 | buildActionMask = 2147483647; 54 | files = ( 55 | ); 56 | runOnlyForDeploymentPostprocessing = 0; 57 | }; 58 | 70DD84291BAFFF590091CA55 /* Frameworks */ = { 59 | isa = PBXFrameworksBuildPhase; 60 | buildActionMask = 2147483647; 61 | files = ( 62 | ); 63 | runOnlyForDeploymentPostprocessing = 0; 64 | }; 65 | /* End PBXFrameworksBuildPhase section */ 66 | 67 | /* Begin PBXGroup section */ 68 | 70DD840A1BAFFF590091CA55 = { 69 | isa = PBXGroup; 70 | children = ( 71 | 70DD84151BAFFF590091CA55 /* XMGStatusBarHUDDemo */, 72 | 70DD842F1BAFFF590091CA55 /* XMGStatusBarHUDDemoTests */, 73 | 70DD84141BAFFF590091CA55 /* Products */, 74 | ); 75 | sourceTree = ""; 76 | }; 77 | 70DD84141BAFFF590091CA55 /* Products */ = { 78 | isa = PBXGroup; 79 | children = ( 80 | 70DD84131BAFFF590091CA55 /* XMGStatusBarHUDDemo.app */, 81 | 70DD842C1BAFFF590091CA55 /* XMGStatusBarHUDDemoTests.xctest */, 82 | ); 83 | name = Products; 84 | sourceTree = ""; 85 | }; 86 | 70DD84151BAFFF590091CA55 /* XMGStatusBarHUDDemo */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 70ED0DD31BB003D400C1CB32 /* XMGStatusBarHUD */, 90 | 70DD841A1BAFFF590091CA55 /* AppDelegate.h */, 91 | 70DD841B1BAFFF590091CA55 /* AppDelegate.m */, 92 | 70DD841D1BAFFF590091CA55 /* ViewController.h */, 93 | 70DD841E1BAFFF590091CA55 /* ViewController.m */, 94 | 70DD84201BAFFF590091CA55 /* Main.storyboard */, 95 | 70DD84231BAFFF590091CA55 /* Images.xcassets */, 96 | 70DD84251BAFFF590091CA55 /* LaunchScreen.xib */, 97 | 70DD84161BAFFF590091CA55 /* Supporting Files */, 98 | ); 99 | path = XMGStatusBarHUDDemo; 100 | sourceTree = ""; 101 | }; 102 | 70DD84161BAFFF590091CA55 /* Supporting Files */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 70DD84171BAFFF590091CA55 /* Info.plist */, 106 | 70DD84181BAFFF590091CA55 /* main.m */, 107 | ); 108 | name = "Supporting Files"; 109 | sourceTree = ""; 110 | }; 111 | 70DD842F1BAFFF590091CA55 /* XMGStatusBarHUDDemoTests */ = { 112 | isa = PBXGroup; 113 | children = ( 114 | 70DD84321BAFFF590091CA55 /* XMGStatusBarHUDDemoTests.m */, 115 | 70DD84301BAFFF590091CA55 /* Supporting Files */, 116 | ); 117 | path = XMGStatusBarHUDDemoTests; 118 | sourceTree = ""; 119 | }; 120 | 70DD84301BAFFF590091CA55 /* Supporting Files */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | 70DD84311BAFFF590091CA55 /* Info.plist */, 124 | ); 125 | name = "Supporting Files"; 126 | sourceTree = ""; 127 | }; 128 | 70ED0DD31BB003D400C1CB32 /* XMGStatusBarHUD */ = { 129 | isa = PBXGroup; 130 | children = ( 131 | 70ED0DD41BB003D400C1CB32 /* XMGStatusBarHUD.bundle */, 132 | 70ED0DD51BB003D400C1CB32 /* XMGStatusBarHUD.h */, 133 | 70ED0DD61BB003D400C1CB32 /* XMGStatusBarHUD.m */, 134 | ); 135 | name = XMGStatusBarHUD; 136 | path = ../../XMGStatusBarHUD; 137 | sourceTree = ""; 138 | }; 139 | /* End PBXGroup section */ 140 | 141 | /* Begin PBXNativeTarget section */ 142 | 70DD84121BAFFF590091CA55 /* XMGStatusBarHUDDemo */ = { 143 | isa = PBXNativeTarget; 144 | buildConfigurationList = 70DD84361BAFFF590091CA55 /* Build configuration list for PBXNativeTarget "XMGStatusBarHUDDemo" */; 145 | buildPhases = ( 146 | 70DD840F1BAFFF590091CA55 /* Sources */, 147 | 70DD84101BAFFF590091CA55 /* Frameworks */, 148 | 70DD84111BAFFF590091CA55 /* Resources */, 149 | ); 150 | buildRules = ( 151 | ); 152 | dependencies = ( 153 | ); 154 | name = XMGStatusBarHUDDemo; 155 | productName = XMGStatusBarHUDDemo; 156 | productReference = 70DD84131BAFFF590091CA55 /* XMGStatusBarHUDDemo.app */; 157 | productType = "com.apple.product-type.application"; 158 | }; 159 | 70DD842B1BAFFF590091CA55 /* XMGStatusBarHUDDemoTests */ = { 160 | isa = PBXNativeTarget; 161 | buildConfigurationList = 70DD84391BAFFF590091CA55 /* Build configuration list for PBXNativeTarget "XMGStatusBarHUDDemoTests" */; 162 | buildPhases = ( 163 | 70DD84281BAFFF590091CA55 /* Sources */, 164 | 70DD84291BAFFF590091CA55 /* Frameworks */, 165 | 70DD842A1BAFFF590091CA55 /* Resources */, 166 | ); 167 | buildRules = ( 168 | ); 169 | dependencies = ( 170 | 70DD842E1BAFFF590091CA55 /* PBXTargetDependency */, 171 | ); 172 | name = XMGStatusBarHUDDemoTests; 173 | productName = XMGStatusBarHUDDemoTests; 174 | productReference = 70DD842C1BAFFF590091CA55 /* XMGStatusBarHUDDemoTests.xctest */; 175 | productType = "com.apple.product-type.bundle.unit-test"; 176 | }; 177 | /* End PBXNativeTarget section */ 178 | 179 | /* Begin PBXProject section */ 180 | 70DD840B1BAFFF590091CA55 /* Project object */ = { 181 | isa = PBXProject; 182 | attributes = { 183 | LastUpgradeCheck = 0640; 184 | ORGANIZATIONNAME = xiaomage; 185 | TargetAttributes = { 186 | 70DD84121BAFFF590091CA55 = { 187 | CreatedOnToolsVersion = 6.4; 188 | }; 189 | 70DD842B1BAFFF590091CA55 = { 190 | CreatedOnToolsVersion = 6.4; 191 | TestTargetID = 70DD84121BAFFF590091CA55; 192 | }; 193 | }; 194 | }; 195 | buildConfigurationList = 70DD840E1BAFFF590091CA55 /* Build configuration list for PBXProject "XMGStatusBarHUDDemo" */; 196 | compatibilityVersion = "Xcode 3.2"; 197 | developmentRegion = English; 198 | hasScannedForEncodings = 0; 199 | knownRegions = ( 200 | en, 201 | Base, 202 | ); 203 | mainGroup = 70DD840A1BAFFF590091CA55; 204 | productRefGroup = 70DD84141BAFFF590091CA55 /* Products */; 205 | projectDirPath = ""; 206 | projectRoot = ""; 207 | targets = ( 208 | 70DD84121BAFFF590091CA55 /* XMGStatusBarHUDDemo */, 209 | 70DD842B1BAFFF590091CA55 /* XMGStatusBarHUDDemoTests */, 210 | ); 211 | }; 212 | /* End PBXProject section */ 213 | 214 | /* Begin PBXResourcesBuildPhase section */ 215 | 70DD84111BAFFF590091CA55 /* Resources */ = { 216 | isa = PBXResourcesBuildPhase; 217 | buildActionMask = 2147483647; 218 | files = ( 219 | 70ED0DD71BB003D400C1CB32 /* XMGStatusBarHUD.bundle in Resources */, 220 | 70DD84221BAFFF590091CA55 /* Main.storyboard in Resources */, 221 | 70DD84271BAFFF590091CA55 /* LaunchScreen.xib in Resources */, 222 | 70DD84241BAFFF590091CA55 /* Images.xcassets in Resources */, 223 | ); 224 | runOnlyForDeploymentPostprocessing = 0; 225 | }; 226 | 70DD842A1BAFFF590091CA55 /* Resources */ = { 227 | isa = PBXResourcesBuildPhase; 228 | buildActionMask = 2147483647; 229 | files = ( 230 | ); 231 | runOnlyForDeploymentPostprocessing = 0; 232 | }; 233 | /* End PBXResourcesBuildPhase section */ 234 | 235 | /* Begin PBXSourcesBuildPhase section */ 236 | 70DD840F1BAFFF590091CA55 /* Sources */ = { 237 | isa = PBXSourcesBuildPhase; 238 | buildActionMask = 2147483647; 239 | files = ( 240 | 70DD841F1BAFFF590091CA55 /* ViewController.m in Sources */, 241 | 70DD841C1BAFFF590091CA55 /* AppDelegate.m in Sources */, 242 | 70ED0DD81BB003D400C1CB32 /* XMGStatusBarHUD.m in Sources */, 243 | 70DD84191BAFFF590091CA55 /* main.m in Sources */, 244 | ); 245 | runOnlyForDeploymentPostprocessing = 0; 246 | }; 247 | 70DD84281BAFFF590091CA55 /* Sources */ = { 248 | isa = PBXSourcesBuildPhase; 249 | buildActionMask = 2147483647; 250 | files = ( 251 | 70DD84331BAFFF590091CA55 /* XMGStatusBarHUDDemoTests.m in Sources */, 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | }; 255 | /* End PBXSourcesBuildPhase section */ 256 | 257 | /* Begin PBXTargetDependency section */ 258 | 70DD842E1BAFFF590091CA55 /* PBXTargetDependency */ = { 259 | isa = PBXTargetDependency; 260 | target = 70DD84121BAFFF590091CA55 /* XMGStatusBarHUDDemo */; 261 | targetProxy = 70DD842D1BAFFF590091CA55 /* PBXContainerItemProxy */; 262 | }; 263 | /* End PBXTargetDependency section */ 264 | 265 | /* Begin PBXVariantGroup section */ 266 | 70DD84201BAFFF590091CA55 /* Main.storyboard */ = { 267 | isa = PBXVariantGroup; 268 | children = ( 269 | 70DD84211BAFFF590091CA55 /* Base */, 270 | ); 271 | name = Main.storyboard; 272 | sourceTree = ""; 273 | }; 274 | 70DD84251BAFFF590091CA55 /* LaunchScreen.xib */ = { 275 | isa = PBXVariantGroup; 276 | children = ( 277 | 70DD84261BAFFF590091CA55 /* Base */, 278 | ); 279 | name = LaunchScreen.xib; 280 | sourceTree = ""; 281 | }; 282 | /* End PBXVariantGroup section */ 283 | 284 | /* Begin XCBuildConfiguration section */ 285 | 70DD84341BAFFF590091CA55 /* Debug */ = { 286 | isa = XCBuildConfiguration; 287 | buildSettings = { 288 | ALWAYS_SEARCH_USER_PATHS = NO; 289 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 290 | CLANG_CXX_LIBRARY = "libc++"; 291 | CLANG_ENABLE_MODULES = YES; 292 | CLANG_ENABLE_OBJC_ARC = YES; 293 | CLANG_WARN_BOOL_CONVERSION = YES; 294 | CLANG_WARN_CONSTANT_CONVERSION = YES; 295 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 296 | CLANG_WARN_EMPTY_BODY = YES; 297 | CLANG_WARN_ENUM_CONVERSION = YES; 298 | CLANG_WARN_INT_CONVERSION = YES; 299 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 300 | CLANG_WARN_UNREACHABLE_CODE = YES; 301 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 302 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 303 | COPY_PHASE_STRIP = NO; 304 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 305 | ENABLE_STRICT_OBJC_MSGSEND = YES; 306 | GCC_C_LANGUAGE_STANDARD = gnu99; 307 | GCC_DYNAMIC_NO_PIC = NO; 308 | GCC_NO_COMMON_BLOCKS = YES; 309 | GCC_OPTIMIZATION_LEVEL = 0; 310 | GCC_PREPROCESSOR_DEFINITIONS = ( 311 | "DEBUG=1", 312 | "$(inherited)", 313 | ); 314 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 315 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 316 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 317 | GCC_WARN_UNDECLARED_SELECTOR = YES; 318 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 319 | GCC_WARN_UNUSED_FUNCTION = YES; 320 | GCC_WARN_UNUSED_VARIABLE = YES; 321 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 322 | MTL_ENABLE_DEBUG_INFO = YES; 323 | ONLY_ACTIVE_ARCH = YES; 324 | SDKROOT = iphoneos; 325 | }; 326 | name = Debug; 327 | }; 328 | 70DD84351BAFFF590091CA55 /* Release */ = { 329 | isa = XCBuildConfiguration; 330 | buildSettings = { 331 | ALWAYS_SEARCH_USER_PATHS = NO; 332 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 333 | CLANG_CXX_LIBRARY = "libc++"; 334 | CLANG_ENABLE_MODULES = YES; 335 | CLANG_ENABLE_OBJC_ARC = YES; 336 | CLANG_WARN_BOOL_CONVERSION = YES; 337 | CLANG_WARN_CONSTANT_CONVERSION = YES; 338 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 339 | CLANG_WARN_EMPTY_BODY = YES; 340 | CLANG_WARN_ENUM_CONVERSION = YES; 341 | CLANG_WARN_INT_CONVERSION = YES; 342 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 343 | CLANG_WARN_UNREACHABLE_CODE = YES; 344 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 345 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 346 | COPY_PHASE_STRIP = NO; 347 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 348 | ENABLE_NS_ASSERTIONS = NO; 349 | ENABLE_STRICT_OBJC_MSGSEND = YES; 350 | GCC_C_LANGUAGE_STANDARD = gnu99; 351 | GCC_NO_COMMON_BLOCKS = YES; 352 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 353 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 354 | GCC_WARN_UNDECLARED_SELECTOR = YES; 355 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 356 | GCC_WARN_UNUSED_FUNCTION = YES; 357 | GCC_WARN_UNUSED_VARIABLE = YES; 358 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 359 | MTL_ENABLE_DEBUG_INFO = NO; 360 | SDKROOT = iphoneos; 361 | VALIDATE_PRODUCT = YES; 362 | }; 363 | name = Release; 364 | }; 365 | 70DD84371BAFFF590091CA55 /* Debug */ = { 366 | isa = XCBuildConfiguration; 367 | buildSettings = { 368 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 369 | INFOPLIST_FILE = XMGStatusBarHUDDemo/Info.plist; 370 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 371 | PRODUCT_NAME = "$(TARGET_NAME)"; 372 | }; 373 | name = Debug; 374 | }; 375 | 70DD84381BAFFF590091CA55 /* Release */ = { 376 | isa = XCBuildConfiguration; 377 | buildSettings = { 378 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 379 | INFOPLIST_FILE = XMGStatusBarHUDDemo/Info.plist; 380 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 381 | PRODUCT_NAME = "$(TARGET_NAME)"; 382 | }; 383 | name = Release; 384 | }; 385 | 70DD843A1BAFFF590091CA55 /* Debug */ = { 386 | isa = XCBuildConfiguration; 387 | buildSettings = { 388 | BUNDLE_LOADER = "$(TEST_HOST)"; 389 | FRAMEWORK_SEARCH_PATHS = ( 390 | "$(SDKROOT)/Developer/Library/Frameworks", 391 | "$(inherited)", 392 | ); 393 | GCC_PREPROCESSOR_DEFINITIONS = ( 394 | "DEBUG=1", 395 | "$(inherited)", 396 | ); 397 | INFOPLIST_FILE = XMGStatusBarHUDDemoTests/Info.plist; 398 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 399 | PRODUCT_NAME = "$(TARGET_NAME)"; 400 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/XMGStatusBarHUDDemo.app/XMGStatusBarHUDDemo"; 401 | }; 402 | name = Debug; 403 | }; 404 | 70DD843B1BAFFF590091CA55 /* Release */ = { 405 | isa = XCBuildConfiguration; 406 | buildSettings = { 407 | BUNDLE_LOADER = "$(TEST_HOST)"; 408 | FRAMEWORK_SEARCH_PATHS = ( 409 | "$(SDKROOT)/Developer/Library/Frameworks", 410 | "$(inherited)", 411 | ); 412 | INFOPLIST_FILE = XMGStatusBarHUDDemoTests/Info.plist; 413 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 414 | PRODUCT_NAME = "$(TARGET_NAME)"; 415 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/XMGStatusBarHUDDemo.app/XMGStatusBarHUDDemo"; 416 | }; 417 | name = Release; 418 | }; 419 | /* End XCBuildConfiguration section */ 420 | 421 | /* Begin XCConfigurationList section */ 422 | 70DD840E1BAFFF590091CA55 /* Build configuration list for PBXProject "XMGStatusBarHUDDemo" */ = { 423 | isa = XCConfigurationList; 424 | buildConfigurations = ( 425 | 70DD84341BAFFF590091CA55 /* Debug */, 426 | 70DD84351BAFFF590091CA55 /* Release */, 427 | ); 428 | defaultConfigurationIsVisible = 0; 429 | defaultConfigurationName = Release; 430 | }; 431 | 70DD84361BAFFF590091CA55 /* Build configuration list for PBXNativeTarget "XMGStatusBarHUDDemo" */ = { 432 | isa = XCConfigurationList; 433 | buildConfigurations = ( 434 | 70DD84371BAFFF590091CA55 /* Debug */, 435 | 70DD84381BAFFF590091CA55 /* Release */, 436 | ); 437 | defaultConfigurationIsVisible = 0; 438 | defaultConfigurationName = Release; 439 | }; 440 | 70DD84391BAFFF590091CA55 /* Build configuration list for PBXNativeTarget "XMGStatusBarHUDDemoTests" */ = { 441 | isa = XCConfigurationList; 442 | buildConfigurations = ( 443 | 70DD843A1BAFFF590091CA55 /* Debug */, 444 | 70DD843B1BAFFF590091CA55 /* Release */, 445 | ); 446 | defaultConfigurationIsVisible = 0; 447 | defaultConfigurationName = Release; 448 | }; 449 | /* End XCConfigurationList section */ 450 | }; 451 | rootObject = 70DD840B1BAFFF590091CA55 /* Project object */; 452 | } 453 | --------------------------------------------------------------------------------