├── AGWeiboUserInfo ├── Images.xcassets │ ├── icon.imageset │ │ ├── icon@2x.jpg │ │ └── Contents.json │ ├── 070_app.imageset │ │ ├── 070_app@2x.jpg │ │ └── Contents.json │ └── AppIcon.appiconset │ │ └── Contents.json ├── AGViewController.h ├── Category │ ├── UIImage+Color.h │ └── UIImage+Color.m ├── AGAppDelegate.h ├── main.m ├── Controller │ ├── AGWeiBoUserInfoController.h │ ├── AGWeiBoUserInfoController.m │ └── AGWeiBoUserInfoController.xib ├── Info.plist ├── AGViewController.m ├── AGAppDelegate.m └── Base.lproj │ └── LaunchScreen.xib ├── AGWeiboUserInfo.xcodeproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── project.pbxproj ├── .gitignore └── AGWeiboUserInfoTests ├── Info.plist └── AGWeiboUserInfoTests.m /AGWeiboUserInfo/Images.xcassets/icon.imageset/icon@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agenric/AGWeiboUserInfo/HEAD/AGWeiboUserInfo/Images.xcassets/icon.imageset/icon@2x.jpg -------------------------------------------------------------------------------- /AGWeiboUserInfo/Images.xcassets/070_app.imageset/070_app@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agenric/AGWeiboUserInfo/HEAD/AGWeiboUserInfo/Images.xcassets/070_app.imageset/070_app@2x.jpg -------------------------------------------------------------------------------- /AGWeiboUserInfo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | # Xcode 4 | build/* 5 | *.pbxuser 6 | !default.pbxuser 7 | *.mode1v3 8 | !default.mode1v3 9 | *.mode2v3 10 | !default.mode2v3 11 | *.perspectivev3 12 | !default.perspectivev3 13 | *.xcworkspace 14 | !default.xcworkspace 15 | xcuserdata 16 | profile 17 | *.moved-aside 18 | *.xcuserstate 19 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/AGViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AGViewController.h 3 | // AGWeiboUserInfo 4 | // 5 | // Created by Agenric on 15/10/8. 6 | // Copyright (c) 2015年 Agenric. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AGViewController : UITableViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/Category/UIImage+Color.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+Color.h 3 | // 4 | // 5 | // Created by Agenric on 15/10/8. 6 | // Copyright (c) 2015年 Agenric. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (UIImage) 12 | // 根据颜色生成一张尺寸为1*1的相同颜色图片 13 | + (UIImage *)imageWithColor:(UIColor *)color; 14 | @end 15 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/AGAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AGAppDelegate.h 3 | // AGWeiboUserInfo 4 | // 5 | // Created by Agenric on 15/10/8. 6 | // Copyright (c) 2015年 Agenric. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AGAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // AGWeiboUserInfo 4 | // 5 | // Created by Agenric on 15/10/8. 6 | // Copyright (c) 2015年 Agenric. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AGAppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AGAppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/Images.xcassets/icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "icon@2x.jpg" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /AGWeiboUserInfo/Images.xcassets/070_app.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "070_app@2x.jpg" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /AGWeiboUserInfo/Controller/AGWeiBoUserInfoController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AGWeiBoUserInfoController.h 3 | // AGWeiboUserInfo 4 | // 5 | // Created by Agenric on 15/10/8. 6 | // Copyright (c) 2015年 Agenric. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AGWeiBoUserInfoController : UIViewController 12 | @property (weak, nonatomic) IBOutlet UIView *tableViewHeader; 13 | @property (weak, nonatomic) IBOutlet UIImageView *tableViewHeaderBg; 14 | @property (weak, nonatomic) IBOutlet UIView *tableViewTab; 15 | @property (weak, nonatomic) IBOutlet NSLayoutConstraint *tableViewHeaderH; 16 | 17 | @property (weak, nonatomic) IBOutlet UITableView *mainTableView; 18 | @end 19 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/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 | } -------------------------------------------------------------------------------- /AGWeiboUserInfoTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | com.lecarx.$(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 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/Category/UIImage+Color.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+Color.m 3 | // 4 | // 5 | // Created by Agenric on 15/10/8. 6 | // Copyright (c) 2015年 Agenric. All rights reserved. 7 | // 8 | 9 | #import "UIImage+Color.h" 10 | 11 | @implementation UIImage (UIImage) 12 | + (UIImage *)imageWithColor:(UIColor *)color 13 | { 14 | // 描述矩形 15 | CGRect rect=CGRectMake(0.0f, 0.0f, 1.0f, 1.0f); 16 | 17 | // 开启位图上下文 18 | UIGraphicsBeginImageContext(rect.size); 19 | // 获取位图上下文 20 | CGContextRef context = UIGraphicsGetCurrentContext(); 21 | // 使用color演示填充上下文 22 | CGContextSetFillColorWithColor(context, [color CGColor]); 23 | // 渲染上下文 24 | CGContextFillRect(context, rect); 25 | // 从上下文中获取图片 26 | UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext(); 27 | // 结束上下文 28 | UIGraphicsEndImageContext(); 29 | 30 | return theImage; 31 | } 32 | @end 33 | -------------------------------------------------------------------------------- /AGWeiboUserInfoTests/AGWeiboUserInfoTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // AGWeiboUserInfoTests.m 3 | // AGWeiboUserInfoTests 4 | // 5 | // Created by Agenric on 15/10/8. 6 | // Copyright (c) 2015年 Agenric. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface AGWeiboUserInfoTests : XCTestCase 13 | 14 | @end 15 | 16 | @implementation AGWeiboUserInfoTests 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 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | com.lecarx.$(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 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/AGViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // AGViewController.m 3 | // AGWeiboUserInfo 4 | // 5 | // Created by Agenric on 15/10/8. 6 | // Copyright (c) 2015年 Agenric. All rights reserved. 7 | // 8 | 9 | #import "AGViewController.h" 10 | #import "AGWeiBoUserInfoController.h" 11 | 12 | @interface AGViewController () 13 | 14 | @end 15 | 16 | @implementation AGViewController 17 | 18 | - (void)viewDidLoad { 19 | [super viewDidLoad]; 20 | // Do any additional setup after loading the view, typically from a nib. 21 | } 22 | 23 | - (void)didReceiveMemoryWarning { 24 | [super didReceiveMemoryWarning]; 25 | // Dispose of any resources that can be recreated. 26 | } 27 | 28 | #pragma mark - 29 | #pragma mark UITableView Delegate 30 | - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { 31 | return 44; 32 | } 33 | 34 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { 35 | [self.navigationController pushViewController:[[AGWeiBoUserInfoController alloc] init] animated:YES]; 36 | [tableView deselectRowAtIndexPath:indexPath animated:YES]; 37 | } 38 | 39 | #pragma mark - 40 | #pragma mark UITableView Datasources 41 | - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { 42 | return 1; 43 | } 44 | 45 | - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)sectionIndex { 46 | return 1; 47 | } 48 | 49 | - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 50 | static NSString *identifier = @"myIdentifier"; 51 | UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier]; 52 | if (cell == nil) { 53 | cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier]; 54 | } 55 | [cell.textLabel setText:@"个人中心"]; 56 | return cell; 57 | } 58 | 59 | @end 60 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/AGAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AGAppDelegate.m 3 | // AGWeiboUserInfo 4 | // 5 | // Created by Agenric on 15/10/8. 6 | // Copyright (c) 2015年 Agenric. All rights reserved. 7 | // 8 | 9 | #import "AGAppDelegate.h" 10 | #import "AGViewController.h" 11 | 12 | @interface AGAppDelegate () 13 | 14 | @end 15 | 16 | @implementation AGAppDelegate 17 | 18 | 19 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 20 | self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 21 | [self.window setBackgroundColor:[UIColor whiteColor]]; 22 | UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:[[AGViewController alloc] init]]; 23 | [self.window setRootViewController:nav]; 24 | [self.window makeKeyAndVisible]; 25 | return YES; 26 | } 27 | 28 | - (void)applicationWillResignActive:(UIApplication *)application { 29 | // 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. 30 | // 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. 31 | } 32 | 33 | - (void)applicationDidEnterBackground:(UIApplication *)application { 34 | // 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. 35 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 36 | } 37 | 38 | - (void)applicationWillEnterForeground:(UIApplication *)application { 39 | // 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. 40 | } 41 | 42 | - (void)applicationDidBecomeActive:(UIApplication *)application { 43 | // 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. 44 | } 45 | 46 | - (void)applicationWillTerminate:(UIApplication *)application { 47 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 48 | } 49 | 50 | @end 51 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/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 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/Controller/AGWeiBoUserInfoController.m: -------------------------------------------------------------------------------- 1 | // 2 | // AGWeiBoUserInfoController.m 3 | // AGWeiboUserInfo 4 | // 5 | // Created by Agenric on 15/10/8. 6 | // Copyright (c) 2015年 Agenric. All rights reserved. 7 | // 8 | 9 | 10 | #define kTableViewHeaderDefH 200 11 | #define kTableViewHeaderMinH 64 12 | #define kTableViewTabH 44 13 | 14 | #import "AGWeiBoUserInfoController.h" 15 | #import "UIImage+Color.h" 16 | 17 | @interface AGWeiBoUserInfoController () 18 | { 19 | CGFloat _defaultOffsetY; 20 | } 21 | @property (nonatomic, strong) UILabel *titleLabel; 22 | @end 23 | 24 | @implementation AGWeiBoUserInfoController 25 | 26 | - (void)viewDidLoad { 27 | [super viewDidLoad]; 28 | [self setupUI]; 29 | } 30 | 31 | #pragma mark - UITableView Delegate 32 | - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { 33 | return 44; 34 | } 35 | 36 | - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { 37 | [tableView deselectRowAtIndexPath:indexPath animated:YES]; 38 | } 39 | 40 | #pragma mark - UITableView Datasources 41 | - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView { 42 | return 1; 43 | } 44 | 45 | - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)sectionIndex { 46 | return 14; 47 | } 48 | 49 | - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { 50 | static NSString *identifier = @"myIdentifier"; 51 | UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier]; 52 | if (cell == nil) { 53 | cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier]; 54 | cell.backgroundColor = [UIColor redColor]; 55 | } 56 | cell.textLabel.text = [NSString stringWithFormat:@"%ld",indexPath.row]; 57 | return cell; 58 | } 59 | 60 | #pragma mark - setupUI 61 | - (void)setupUI { 62 | // tableView 63 | _defaultOffsetY = -(kTableViewHeaderDefH + kTableViewTabH); 64 | [self.mainTableView setContentInset:UIEdgeInsetsMake(-_defaultOffsetY, 0, 0, 0)]; 65 | self.automaticallyAdjustsScrollViewInsets = NO; 66 | [self.mainTableView setTableFooterView:[[UIView alloc] init]]; 67 | 68 | // navigationBar 69 | [self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault]; 70 | [self.navigationController.navigationBar setShadowImage:[[UIImage alloc] init]]; 71 | 72 | // title 73 | UILabel *titleLabel = [[UILabel alloc] init]; 74 | titleLabel.text = @"Agenric"; 75 | [titleLabel sizeToFit]; 76 | self.navigationItem.titleView = titleLabel; 77 | _titleLabel = titleLabel; 78 | _titleLabel.alpha = 0; 79 | _titleLabel.hidden = YES; 80 | } 81 | 82 | 83 | - (void)scrollViewDidScroll:(UIScrollView *)scrollView { 84 | CGFloat offsetY = scrollView.contentOffset.y; 85 | CGFloat delta = offsetY - _defaultOffsetY; 86 | 87 | CGFloat height = kTableViewHeaderDefH - delta; 88 | 89 | NSLog(@"offsetY----%f",offsetY); 90 | NSLog(@"delta------%f",delta); 91 | NSLog(@"height-----%f",height); 92 | if (height < kTableViewHeaderMinH) { 93 | height = kTableViewHeaderMinH; 94 | } 95 | _tableViewHeaderH.constant = height; 96 | 97 | CGFloat alpha = delta / (kTableViewHeaderDefH - kTableViewHeaderMinH); 98 | if (alpha > 0) { 99 | _titleLabel.hidden = NO; 100 | if (alpha >= 1) { 101 | alpha = 0.99; 102 | } 103 | } else { 104 | _titleLabel.hidden = YES; 105 | } 106 | 107 | _titleLabel.alpha = alpha; 108 | 109 | // 设置导航条的背景图片 110 | UIImage *image = [UIImage imageWithColor:[UIColor colorWithWhite:1 alpha:alpha]]; 111 | [self.navigationController.navigationBar setBackgroundImage:image forBarMetrics:UIBarMetricsDefault]; 112 | } 113 | @end 114 | -------------------------------------------------------------------------------- /AGWeiboUserInfo/Controller/AGWeiBoUserInfoController.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 65 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | -------------------------------------------------------------------------------- /AGWeiboUserInfo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | D78C14D31BC6642300F016B8 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = D78C14D21BC6642300F016B8 /* main.m */; }; 11 | D78C14D61BC6642300F016B8 /* AGAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = D78C14D51BC6642300F016B8 /* AGAppDelegate.m */; }; 12 | D78C14D91BC6642300F016B8 /* AGViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D78C14D81BC6642300F016B8 /* AGViewController.m */; }; 13 | D78C14DE1BC6642300F016B8 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D78C14DD1BC6642300F016B8 /* Images.xcassets */; }; 14 | D78C14E11BC6642300F016B8 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = D78C14DF1BC6642300F016B8 /* LaunchScreen.xib */; }; 15 | D78C14ED1BC6642300F016B8 /* AGWeiboUserInfoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = D78C14EC1BC6642300F016B8 /* AGWeiboUserInfoTests.m */; }; 16 | D78C14FC1BC6676500F016B8 /* AGWeiBoUserInfoController.m in Sources */ = {isa = PBXBuildFile; fileRef = D78C14FA1BC6676500F016B8 /* AGWeiBoUserInfoController.m */; }; 17 | D78C14FD1BC6676500F016B8 /* AGWeiBoUserInfoController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D78C14FB1BC6676500F016B8 /* AGWeiBoUserInfoController.xib */; }; 18 | D78C15091BC6B2D600F016B8 /* UIImage+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = D78C15081BC6B2D600F016B8 /* UIImage+Color.m */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXContainerItemProxy section */ 22 | D78C14E71BC6642300F016B8 /* PBXContainerItemProxy */ = { 23 | isa = PBXContainerItemProxy; 24 | containerPortal = D78C14C51BC6642300F016B8 /* Project object */; 25 | proxyType = 1; 26 | remoteGlobalIDString = D78C14CC1BC6642300F016B8; 27 | remoteInfo = AGWeiboUserInfo; 28 | }; 29 | /* End PBXContainerItemProxy section */ 30 | 31 | /* Begin PBXFileReference section */ 32 | D78C14CD1BC6642300F016B8 /* AGWeiboUserInfo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AGWeiboUserInfo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 33 | D78C14D11BC6642300F016B8 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 34 | D78C14D21BC6642300F016B8 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 35 | D78C14D41BC6642300F016B8 /* AGAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AGAppDelegate.h; sourceTree = ""; }; 36 | D78C14D51BC6642300F016B8 /* AGAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AGAppDelegate.m; sourceTree = ""; }; 37 | D78C14D71BC6642300F016B8 /* AGViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AGViewController.h; sourceTree = ""; }; 38 | D78C14D81BC6642300F016B8 /* AGViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AGViewController.m; sourceTree = ""; }; 39 | D78C14DD1BC6642300F016B8 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 40 | D78C14E01BC6642300F016B8 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 41 | D78C14E61BC6642300F016B8 /* AGWeiboUserInfoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AGWeiboUserInfoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 42 | D78C14EB1BC6642300F016B8 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 43 | D78C14EC1BC6642300F016B8 /* AGWeiboUserInfoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AGWeiboUserInfoTests.m; sourceTree = ""; }; 44 | D78C14F91BC6676500F016B8 /* AGWeiBoUserInfoController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AGWeiBoUserInfoController.h; sourceTree = ""; }; 45 | D78C14FA1BC6676500F016B8 /* AGWeiBoUserInfoController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AGWeiBoUserInfoController.m; sourceTree = ""; }; 46 | D78C14FB1BC6676500F016B8 /* AGWeiBoUserInfoController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AGWeiBoUserInfoController.xib; sourceTree = ""; }; 47 | D78C15071BC6B2D600F016B8 /* UIImage+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Color.h"; sourceTree = ""; }; 48 | D78C15081BC6B2D600F016B8 /* UIImage+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Color.m"; sourceTree = ""; }; 49 | /* End PBXFileReference section */ 50 | 51 | /* Begin PBXFrameworksBuildPhase section */ 52 | D78C14CA1BC6642300F016B8 /* Frameworks */ = { 53 | isa = PBXFrameworksBuildPhase; 54 | buildActionMask = 2147483647; 55 | files = ( 56 | ); 57 | runOnlyForDeploymentPostprocessing = 0; 58 | }; 59 | D78C14E31BC6642300F016B8 /* Frameworks */ = { 60 | isa = PBXFrameworksBuildPhase; 61 | buildActionMask = 2147483647; 62 | files = ( 63 | ); 64 | runOnlyForDeploymentPostprocessing = 0; 65 | }; 66 | /* End PBXFrameworksBuildPhase section */ 67 | 68 | /* Begin PBXGroup section */ 69 | D78C14C41BC6642300F016B8 = { 70 | isa = PBXGroup; 71 | children = ( 72 | D78C14CF1BC6642300F016B8 /* AGWeiboUserInfo */, 73 | D78C14E91BC6642300F016B8 /* AGWeiboUserInfoTests */, 74 | D78C14CE1BC6642300F016B8 /* Products */, 75 | ); 76 | sourceTree = ""; 77 | }; 78 | D78C14CE1BC6642300F016B8 /* Products */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | D78C14CD1BC6642300F016B8 /* AGWeiboUserInfo.app */, 82 | D78C14E61BC6642300F016B8 /* AGWeiboUserInfoTests.xctest */, 83 | ); 84 | name = Products; 85 | sourceTree = ""; 86 | }; 87 | D78C14CF1BC6642300F016B8 /* AGWeiboUserInfo */ = { 88 | isa = PBXGroup; 89 | children = ( 90 | D78C15001BC6B26700F016B8 /* Category */, 91 | D78C14F61BC6673900F016B8 /* Controller */, 92 | D78C14F71BC6673900F016B8 /* Model */, 93 | D78C14F81BC6673900F016B8 /* View */, 94 | D78C14D41BC6642300F016B8 /* AGAppDelegate.h */, 95 | D78C14D51BC6642300F016B8 /* AGAppDelegate.m */, 96 | D78C14D71BC6642300F016B8 /* AGViewController.h */, 97 | D78C14D81BC6642300F016B8 /* AGViewController.m */, 98 | D78C14DD1BC6642300F016B8 /* Images.xcassets */, 99 | D78C14DF1BC6642300F016B8 /* LaunchScreen.xib */, 100 | D78C14D01BC6642300F016B8 /* Supporting Files */, 101 | ); 102 | path = AGWeiboUserInfo; 103 | sourceTree = ""; 104 | }; 105 | D78C14D01BC6642300F016B8 /* Supporting Files */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | D78C14D11BC6642300F016B8 /* Info.plist */, 109 | D78C14D21BC6642300F016B8 /* main.m */, 110 | ); 111 | name = "Supporting Files"; 112 | sourceTree = ""; 113 | }; 114 | D78C14E91BC6642300F016B8 /* AGWeiboUserInfoTests */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | D78C14EC1BC6642300F016B8 /* AGWeiboUserInfoTests.m */, 118 | D78C14EA1BC6642300F016B8 /* Supporting Files */, 119 | ); 120 | path = AGWeiboUserInfoTests; 121 | sourceTree = ""; 122 | }; 123 | D78C14EA1BC6642300F016B8 /* Supporting Files */ = { 124 | isa = PBXGroup; 125 | children = ( 126 | D78C14EB1BC6642300F016B8 /* Info.plist */, 127 | ); 128 | name = "Supporting Files"; 129 | sourceTree = ""; 130 | }; 131 | D78C14F61BC6673900F016B8 /* Controller */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | D78C14F91BC6676500F016B8 /* AGWeiBoUserInfoController.h */, 135 | D78C14FA1BC6676500F016B8 /* AGWeiBoUserInfoController.m */, 136 | D78C14FB1BC6676500F016B8 /* AGWeiBoUserInfoController.xib */, 137 | ); 138 | path = Controller; 139 | sourceTree = ""; 140 | }; 141 | D78C14F71BC6673900F016B8 /* Model */ = { 142 | isa = PBXGroup; 143 | children = ( 144 | ); 145 | path = Model; 146 | sourceTree = ""; 147 | }; 148 | D78C14F81BC6673900F016B8 /* View */ = { 149 | isa = PBXGroup; 150 | children = ( 151 | ); 152 | path = View; 153 | sourceTree = ""; 154 | }; 155 | D78C15001BC6B26700F016B8 /* Category */ = { 156 | isa = PBXGroup; 157 | children = ( 158 | D78C15071BC6B2D600F016B8 /* UIImage+Color.h */, 159 | D78C15081BC6B2D600F016B8 /* UIImage+Color.m */, 160 | ); 161 | path = Category; 162 | sourceTree = ""; 163 | }; 164 | /* End PBXGroup section */ 165 | 166 | /* Begin PBXNativeTarget section */ 167 | D78C14CC1BC6642300F016B8 /* AGWeiboUserInfo */ = { 168 | isa = PBXNativeTarget; 169 | buildConfigurationList = D78C14F01BC6642300F016B8 /* Build configuration list for PBXNativeTarget "AGWeiboUserInfo" */; 170 | buildPhases = ( 171 | D78C14C91BC6642300F016B8 /* Sources */, 172 | D78C14CA1BC6642300F016B8 /* Frameworks */, 173 | D78C14CB1BC6642300F016B8 /* Resources */, 174 | ); 175 | buildRules = ( 176 | ); 177 | dependencies = ( 178 | ); 179 | name = AGWeiboUserInfo; 180 | productName = AGWeiboUserInfo; 181 | productReference = D78C14CD1BC6642300F016B8 /* AGWeiboUserInfo.app */; 182 | productType = "com.apple.product-type.application"; 183 | }; 184 | D78C14E51BC6642300F016B8 /* AGWeiboUserInfoTests */ = { 185 | isa = PBXNativeTarget; 186 | buildConfigurationList = D78C14F31BC6642300F016B8 /* Build configuration list for PBXNativeTarget "AGWeiboUserInfoTests" */; 187 | buildPhases = ( 188 | D78C14E21BC6642300F016B8 /* Sources */, 189 | D78C14E31BC6642300F016B8 /* Frameworks */, 190 | D78C14E41BC6642300F016B8 /* Resources */, 191 | ); 192 | buildRules = ( 193 | ); 194 | dependencies = ( 195 | D78C14E81BC6642300F016B8 /* PBXTargetDependency */, 196 | ); 197 | name = AGWeiboUserInfoTests; 198 | productName = AGWeiboUserInfoTests; 199 | productReference = D78C14E61BC6642300F016B8 /* AGWeiboUserInfoTests.xctest */; 200 | productType = "com.apple.product-type.bundle.unit-test"; 201 | }; 202 | /* End PBXNativeTarget section */ 203 | 204 | /* Begin PBXProject section */ 205 | D78C14C51BC6642300F016B8 /* Project object */ = { 206 | isa = PBXProject; 207 | attributes = { 208 | CLASSPREFIX = AG; 209 | LastUpgradeCheck = 0640; 210 | ORGANIZATIONNAME = Agenric; 211 | TargetAttributes = { 212 | D78C14CC1BC6642300F016B8 = { 213 | CreatedOnToolsVersion = 6.4; 214 | }; 215 | D78C14E51BC6642300F016B8 = { 216 | CreatedOnToolsVersion = 6.4; 217 | TestTargetID = D78C14CC1BC6642300F016B8; 218 | }; 219 | }; 220 | }; 221 | buildConfigurationList = D78C14C81BC6642300F016B8 /* Build configuration list for PBXProject "AGWeiboUserInfo" */; 222 | compatibilityVersion = "Xcode 3.2"; 223 | developmentRegion = English; 224 | hasScannedForEncodings = 0; 225 | knownRegions = ( 226 | en, 227 | Base, 228 | ); 229 | mainGroup = D78C14C41BC6642300F016B8; 230 | productRefGroup = D78C14CE1BC6642300F016B8 /* Products */; 231 | projectDirPath = ""; 232 | projectRoot = ""; 233 | targets = ( 234 | D78C14CC1BC6642300F016B8 /* AGWeiboUserInfo */, 235 | D78C14E51BC6642300F016B8 /* AGWeiboUserInfoTests */, 236 | ); 237 | }; 238 | /* End PBXProject section */ 239 | 240 | /* Begin PBXResourcesBuildPhase section */ 241 | D78C14CB1BC6642300F016B8 /* Resources */ = { 242 | isa = PBXResourcesBuildPhase; 243 | buildActionMask = 2147483647; 244 | files = ( 245 | D78C14FD1BC6676500F016B8 /* AGWeiBoUserInfoController.xib in Resources */, 246 | D78C14E11BC6642300F016B8 /* LaunchScreen.xib in Resources */, 247 | D78C14DE1BC6642300F016B8 /* Images.xcassets in Resources */, 248 | ); 249 | runOnlyForDeploymentPostprocessing = 0; 250 | }; 251 | D78C14E41BC6642300F016B8 /* Resources */ = { 252 | isa = PBXResourcesBuildPhase; 253 | buildActionMask = 2147483647; 254 | files = ( 255 | ); 256 | runOnlyForDeploymentPostprocessing = 0; 257 | }; 258 | /* End PBXResourcesBuildPhase section */ 259 | 260 | /* Begin PBXSourcesBuildPhase section */ 261 | D78C14C91BC6642300F016B8 /* Sources */ = { 262 | isa = PBXSourcesBuildPhase; 263 | buildActionMask = 2147483647; 264 | files = ( 265 | D78C14D91BC6642300F016B8 /* AGViewController.m in Sources */, 266 | D78C14D61BC6642300F016B8 /* AGAppDelegate.m in Sources */, 267 | D78C15091BC6B2D600F016B8 /* UIImage+Color.m in Sources */, 268 | D78C14D31BC6642300F016B8 /* main.m in Sources */, 269 | D78C14FC1BC6676500F016B8 /* AGWeiBoUserInfoController.m in Sources */, 270 | ); 271 | runOnlyForDeploymentPostprocessing = 0; 272 | }; 273 | D78C14E21BC6642300F016B8 /* Sources */ = { 274 | isa = PBXSourcesBuildPhase; 275 | buildActionMask = 2147483647; 276 | files = ( 277 | D78C14ED1BC6642300F016B8 /* AGWeiboUserInfoTests.m in Sources */, 278 | ); 279 | runOnlyForDeploymentPostprocessing = 0; 280 | }; 281 | /* End PBXSourcesBuildPhase section */ 282 | 283 | /* Begin PBXTargetDependency section */ 284 | D78C14E81BC6642300F016B8 /* PBXTargetDependency */ = { 285 | isa = PBXTargetDependency; 286 | target = D78C14CC1BC6642300F016B8 /* AGWeiboUserInfo */; 287 | targetProxy = D78C14E71BC6642300F016B8 /* PBXContainerItemProxy */; 288 | }; 289 | /* End PBXTargetDependency section */ 290 | 291 | /* Begin PBXVariantGroup section */ 292 | D78C14DF1BC6642300F016B8 /* LaunchScreen.xib */ = { 293 | isa = PBXVariantGroup; 294 | children = ( 295 | D78C14E01BC6642300F016B8 /* Base */, 296 | ); 297 | name = LaunchScreen.xib; 298 | sourceTree = ""; 299 | }; 300 | /* End PBXVariantGroup section */ 301 | 302 | /* Begin XCBuildConfiguration section */ 303 | D78C14EE1BC6642300F016B8 /* Debug */ = { 304 | isa = XCBuildConfiguration; 305 | buildSettings = { 306 | ALWAYS_SEARCH_USER_PATHS = NO; 307 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 308 | CLANG_CXX_LIBRARY = "libc++"; 309 | CLANG_ENABLE_MODULES = YES; 310 | CLANG_ENABLE_OBJC_ARC = YES; 311 | CLANG_WARN_BOOL_CONVERSION = YES; 312 | CLANG_WARN_CONSTANT_CONVERSION = YES; 313 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 314 | CLANG_WARN_EMPTY_BODY = YES; 315 | CLANG_WARN_ENUM_CONVERSION = YES; 316 | CLANG_WARN_INT_CONVERSION = YES; 317 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 318 | CLANG_WARN_UNREACHABLE_CODE = YES; 319 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 320 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 321 | COPY_PHASE_STRIP = NO; 322 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 323 | ENABLE_STRICT_OBJC_MSGSEND = YES; 324 | GCC_C_LANGUAGE_STANDARD = gnu99; 325 | GCC_DYNAMIC_NO_PIC = NO; 326 | GCC_NO_COMMON_BLOCKS = YES; 327 | GCC_OPTIMIZATION_LEVEL = 0; 328 | GCC_PREPROCESSOR_DEFINITIONS = ( 329 | "DEBUG=1", 330 | "$(inherited)", 331 | ); 332 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 333 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 334 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 335 | GCC_WARN_UNDECLARED_SELECTOR = YES; 336 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 337 | GCC_WARN_UNUSED_FUNCTION = YES; 338 | GCC_WARN_UNUSED_VARIABLE = YES; 339 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 340 | MTL_ENABLE_DEBUG_INFO = YES; 341 | ONLY_ACTIVE_ARCH = YES; 342 | SDKROOT = iphoneos; 343 | }; 344 | name = Debug; 345 | }; 346 | D78C14EF1BC6642300F016B8 /* Release */ = { 347 | isa = XCBuildConfiguration; 348 | buildSettings = { 349 | ALWAYS_SEARCH_USER_PATHS = NO; 350 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 351 | CLANG_CXX_LIBRARY = "libc++"; 352 | CLANG_ENABLE_MODULES = YES; 353 | CLANG_ENABLE_OBJC_ARC = YES; 354 | CLANG_WARN_BOOL_CONVERSION = YES; 355 | CLANG_WARN_CONSTANT_CONVERSION = YES; 356 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 357 | CLANG_WARN_EMPTY_BODY = YES; 358 | CLANG_WARN_ENUM_CONVERSION = YES; 359 | CLANG_WARN_INT_CONVERSION = YES; 360 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 361 | CLANG_WARN_UNREACHABLE_CODE = YES; 362 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 363 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 364 | COPY_PHASE_STRIP = NO; 365 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 366 | ENABLE_NS_ASSERTIONS = NO; 367 | ENABLE_STRICT_OBJC_MSGSEND = YES; 368 | GCC_C_LANGUAGE_STANDARD = gnu99; 369 | GCC_NO_COMMON_BLOCKS = YES; 370 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 371 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 372 | GCC_WARN_UNDECLARED_SELECTOR = YES; 373 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 374 | GCC_WARN_UNUSED_FUNCTION = YES; 375 | GCC_WARN_UNUSED_VARIABLE = YES; 376 | IPHONEOS_DEPLOYMENT_TARGET = 8.4; 377 | MTL_ENABLE_DEBUG_INFO = NO; 378 | SDKROOT = iphoneos; 379 | VALIDATE_PRODUCT = YES; 380 | }; 381 | name = Release; 382 | }; 383 | D78C14F11BC6642300F016B8 /* Debug */ = { 384 | isa = XCBuildConfiguration; 385 | buildSettings = { 386 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 387 | INFOPLIST_FILE = AGWeiboUserInfo/Info.plist; 388 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 389 | PRODUCT_NAME = "$(TARGET_NAME)"; 390 | }; 391 | name = Debug; 392 | }; 393 | D78C14F21BC6642300F016B8 /* Release */ = { 394 | isa = XCBuildConfiguration; 395 | buildSettings = { 396 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 397 | INFOPLIST_FILE = AGWeiboUserInfo/Info.plist; 398 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 399 | PRODUCT_NAME = "$(TARGET_NAME)"; 400 | }; 401 | name = Release; 402 | }; 403 | D78C14F41BC6642300F016B8 /* Debug */ = { 404 | isa = XCBuildConfiguration; 405 | buildSettings = { 406 | BUNDLE_LOADER = "$(TEST_HOST)"; 407 | FRAMEWORK_SEARCH_PATHS = ( 408 | "$(SDKROOT)/Developer/Library/Frameworks", 409 | "$(inherited)", 410 | ); 411 | GCC_PREPROCESSOR_DEFINITIONS = ( 412 | "DEBUG=1", 413 | "$(inherited)", 414 | ); 415 | INFOPLIST_FILE = AGWeiboUserInfoTests/Info.plist; 416 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 417 | PRODUCT_NAME = "$(TARGET_NAME)"; 418 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AGWeiboUserInfo.app/AGWeiboUserInfo"; 419 | }; 420 | name = Debug; 421 | }; 422 | D78C14F51BC6642300F016B8 /* Release */ = { 423 | isa = XCBuildConfiguration; 424 | buildSettings = { 425 | BUNDLE_LOADER = "$(TEST_HOST)"; 426 | FRAMEWORK_SEARCH_PATHS = ( 427 | "$(SDKROOT)/Developer/Library/Frameworks", 428 | "$(inherited)", 429 | ); 430 | INFOPLIST_FILE = AGWeiboUserInfoTests/Info.plist; 431 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 432 | PRODUCT_NAME = "$(TARGET_NAME)"; 433 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AGWeiboUserInfo.app/AGWeiboUserInfo"; 434 | }; 435 | name = Release; 436 | }; 437 | /* End XCBuildConfiguration section */ 438 | 439 | /* Begin XCConfigurationList section */ 440 | D78C14C81BC6642300F016B8 /* Build configuration list for PBXProject "AGWeiboUserInfo" */ = { 441 | isa = XCConfigurationList; 442 | buildConfigurations = ( 443 | D78C14EE1BC6642300F016B8 /* Debug */, 444 | D78C14EF1BC6642300F016B8 /* Release */, 445 | ); 446 | defaultConfigurationIsVisible = 0; 447 | defaultConfigurationName = Release; 448 | }; 449 | D78C14F01BC6642300F016B8 /* Build configuration list for PBXNativeTarget "AGWeiboUserInfo" */ = { 450 | isa = XCConfigurationList; 451 | buildConfigurations = ( 452 | D78C14F11BC6642300F016B8 /* Debug */, 453 | D78C14F21BC6642300F016B8 /* Release */, 454 | ); 455 | defaultConfigurationIsVisible = 0; 456 | }; 457 | D78C14F31BC6642300F016B8 /* Build configuration list for PBXNativeTarget "AGWeiboUserInfoTests" */ = { 458 | isa = XCConfigurationList; 459 | buildConfigurations = ( 460 | D78C14F41BC6642300F016B8 /* Debug */, 461 | D78C14F51BC6642300F016B8 /* Release */, 462 | ); 463 | defaultConfigurationIsVisible = 0; 464 | }; 465 | /* End XCConfigurationList section */ 466 | }; 467 | rootObject = D78C14C51BC6642300F016B8 /* Project object */; 468 | } 469 | --------------------------------------------------------------------------------