├── .DS_Store ├── Classes ├── FirstViewController.h ├── FirstViewController.m ├── VDButton.h ├── VDButton.m ├── VDFrameworkAppDelegate.h ├── VDFrameworkAppDelegate.m ├── VDTabBarController.h └── VDTabBarController.m ├── Documents ├── default.png ├── gradient.png └── reflexive.png ├── FirstView.xib ├── MainWindow.xib ├── Readme.md ├── SecondView.xib ├── ThirdView.xib ├── VDFramework-Info.plist ├── VDFramework.xcodeproj ├── project.pbxproj ├── vincentdemay.mode1v3 └── vincentdemay.pbxuser ├── VDFramework_Prefix.pch ├── build ├── Debug-iphonesimulator │ ├── VDFramework.app.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── VDFramework │ └── VDFramework.app │ │ ├── FirstView.nib │ │ ├── Info.plist │ │ ├── MainWindow.nib │ │ ├── PkgInfo │ │ ├── SecondView.nib │ │ ├── ThirdView.nib │ │ ├── VDFramework │ │ ├── favorite.png │ │ ├── profile.png │ │ └── search.png └── VDFramework.build │ ├── Debug-iphonesimulator │ └── VDFramework.build │ │ ├── Objects-normal │ │ └── i386 │ │ │ ├── FirstViewController.o │ │ │ ├── VDButton.o │ │ │ ├── VDFramework.LinkFileList │ │ │ ├── VDFrameworkAppDelegate.o │ │ │ ├── VDTabBarController.o │ │ │ └── main.o │ │ ├── VDFramework-all-target-headers.hmap │ │ ├── VDFramework-generated-files.hmap │ │ ├── VDFramework-own-target-headers.hmap │ │ ├── VDFramework-project-headers.hmap │ │ ├── VDFramework.dep │ │ ├── VDFramework.hmap │ │ └── build-state.dat │ └── VDFramework.pbxindex │ ├── categories.pbxbtree │ ├── cdecls.pbxbtree │ ├── decls.pbxbtree │ ├── files.pbxbtree │ ├── imports.pbxbtree │ ├── pbxindex.header │ ├── protocols.pbxbtree │ ├── refs.pbxbtree │ ├── strings.pbxstrings │ ├── control │ └── strings │ ├── subclasses.pbxbtree │ └── symbols0.pbxsymbols ├── favorite.png ├── main.m ├── profile.png └── search.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/.DS_Store -------------------------------------------------------------------------------- /Classes/FirstViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2010-2011 Vincent Demay 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | 18 | #import 19 | 20 | 21 | @interface FirstViewController : UIViewController { 22 | 23 | } 24 | 25 | @end 26 | -------------------------------------------------------------------------------- /Classes/FirstViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2010-2011 Vincent Demay 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | 18 | #import "FirstViewController.h" 19 | 20 | 21 | @implementation FirstViewController 22 | 23 | 24 | /* 25 | // The designated initializer. Override to perform setup that is required before the view is loaded. 26 | - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { 27 | self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; 28 | if (self) { 29 | // Custom initialization 30 | } 31 | return self; 32 | } 33 | */ 34 | 35 | /* 36 | // Implement loadView to create a view hierarchy programmatically, without using a nib. 37 | - (void)loadView { 38 | } 39 | */ 40 | 41 | /* 42 | // Implement viewDidLoad to do additional setup after loading the view, typically from a nib. 43 | - (void)viewDidLoad { 44 | [super viewDidLoad]; 45 | } 46 | */ 47 | 48 | /* 49 | // Override to allow orientations other than the default portrait orientation. 50 | - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { 51 | // Return YES for supported orientations 52 | return (interfaceOrientation == UIInterfaceOrientationPortrait); 53 | } 54 | */ 55 | 56 | - (void)didReceiveMemoryWarning { 57 | // Releases the view if it doesn't have a superview. 58 | [super didReceiveMemoryWarning]; 59 | 60 | // Release any cached data, images, etc that aren't in use. 61 | } 62 | 63 | - (void)viewDidUnload { 64 | // Release any retained subviews of the main view. 65 | // e.g. self.myOutlet = nil; 66 | } 67 | 68 | 69 | - (void)dealloc { 70 | [super dealloc]; 71 | } 72 | 73 | @end 74 | -------------------------------------------------------------------------------- /Classes/VDButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2010-2011 Vincent Demay 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | #import 18 | 19 | typedef enum { 20 | VDTabBarReflexiveStyle, //default 21 | VDTabBarGradientStyle, 22 | } VDTabBarStyle; 23 | 24 | /////////////////////////////////////////////////////////////////// 25 | @interface VDButton : UIButton { 26 | UIImage* image; 27 | 28 | //TYPE 29 | UIColor* _from; 30 | UIColor* _to; 31 | VDTabBarStyle _style; 32 | } 33 | @property (nonatomic, retain) UIImage* image; 34 | @property (nonatomic, retain) UIColor* from; 35 | @property (nonatomic, retain) UIColor* to; 36 | @property (nonatomic) VDTabBarStyle style; 37 | 38 | @end 39 | -------------------------------------------------------------------------------- /Classes/VDButton.m: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2010-2011 Vincent Demay 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | 18 | #import "VDButton.h" 19 | 20 | @interface VDButton (Private) 21 | - (void) drawUnselected:(CGRect) rect ; 22 | - (void) drawGradient:(CGRect) rect withColor1:(UIColor*) start andColor2:(UIColor*) end; 23 | - (void)drawReflexive:(CGRect)rect andColor:(UIColor *) color; 24 | - (CGGradientRef)newGradientWithColors:(UIColor**)colors locations:(CGFloat*)locations count:(int)count; 25 | - (CGGradientRef)newGradientWithColors:(UIColor**)colors count:(int)count; 26 | @end 27 | 28 | 29 | @implementation VDButton 30 | 31 | @synthesize image; 32 | @synthesize from = _from, to = _to, style = _style; 33 | 34 | - (void) dealloc 35 | { 36 | [image release]; 37 | image = nil; 38 | [_from release]; 39 | _from = nil; 40 | [_to release]; 41 | _to = nil; 42 | [super dealloc]; 43 | } 44 | 45 | 46 | //overidde 47 | - (void)drawRect:(CGRect)rect { 48 | if (image) { 49 | UIImage *_mask = image; 50 | 51 | CGContextRef ctx = UIGraphicsGetCurrentContext(); 52 | CGContextSaveGState(ctx); 53 | 54 | // Translate context upside-down to invert the clip-to-mask, which turns the mask upside down 55 | CGContextTranslateCTM(ctx, 0, rect.size.height); 56 | CGContextScaleCTM(ctx, 1.0, -1.0); 57 | 58 | CGRect maskRect = CGRectMake(0, 0, _mask.size.width, _mask.size.height); 59 | CGContextClipToMask(ctx, maskRect, _mask.CGImage); 60 | if (self.selected) { 61 | if (_style == VDTabBarGradientStyle) { 62 | [self drawGradient:rect withColor1:self.to andColor2:self.from]; 63 | } else { 64 | if (_from) { 65 | [self drawReflexive:rect andColor:self.from]; 66 | } else { 67 | [self drawReflexive:rect andColor:[UIColor colorWithRed:0 green:150.0/255.0 blue:1 alpha:1]]; 68 | } 69 | } 70 | } else { 71 | [self drawUnselected:rect]; 72 | } 73 | CGContextRestoreGState(ctx); 74 | } 75 | } 76 | 77 | - (void) drawUnselected:(CGRect) rect { 78 | [self drawGradient:rect 79 | withColor1:[UIColor colorWithRed:93.0/255.0 green:93.0/255.0 blue:93.0/255.0 alpha:1] 80 | andColor2:[UIColor colorWithRed:162.0/255.0 green:162.0/255.0 blue:162.0/255.0 alpha:1]]; 81 | } 82 | 83 | -(void) drawGradient:(CGRect) rect withColor1:(UIColor*) start andColor2:(UIColor*) end{ 84 | CGContextRef ctx = UIGraphicsGetCurrentContext(); 85 | 86 | CGContextSaveGState(ctx); 87 | CGContextClip(ctx); 88 | 89 | UIColor* colors[] = {start, end}; 90 | CGGradientRef gradient = [self newGradientWithColors:colors count:2]; 91 | CGContextDrawLinearGradient(ctx, gradient, CGPointMake(rect.origin.x, rect.origin.y), 92 | CGPointMake(rect.origin.x, rect.origin.y+rect.size.height), 93 | kCGGradientDrawsAfterEndLocation); 94 | CGGradientRelease(gradient); 95 | 96 | CGContextRestoreGState(ctx); 97 | } 98 | 99 | - (void)drawReflexive:(CGRect)rect andColor:(UIColor *) color{ 100 | CGContextRef ctx = UIGraphicsGetCurrentContext(); 101 | 102 | CGContextSaveGState(ctx); 103 | CGContextClip(ctx); 104 | 105 | // Draw the background color 106 | [color setFill]; 107 | CGContextFillRect(ctx, rect); 108 | 109 | // The highlights are drawn using an overlayed, semi-transparent gradient. 110 | // The values here are absolutely arbitrary. They were nabbed by inspecting the colors of 111 | // the "Delete Contact" button in the Contacts app. 112 | UIColor* topStartHighlight = [UIColor colorWithWhite:1.0 alpha:0.685]; 113 | UIColor* topEndHighlight = [UIColor colorWithWhite:1.0 alpha:0.13]; 114 | UIColor* clearColor = [UIColor colorWithWhite:1.0 alpha:0.0]; 115 | 116 | UIColor* botEndHighlight; 117 | if( NO ) { 118 | botEndHighlight = [UIColor colorWithWhite:1.0 alpha:0.27]; 119 | } else { 120 | botEndHighlight = clearColor; 121 | } 122 | 123 | UIColor* colors[] = { 124 | topStartHighlight, topEndHighlight, 125 | clearColor, 126 | clearColor, botEndHighlight}; 127 | CGFloat locations[] = {0, 0.5, 0.5, 0.6, 1.0}; 128 | 129 | CGGradientRef gradient = [self newGradientWithColors:colors locations:locations count:5]; 130 | CGContextDrawLinearGradient(ctx, gradient, CGPointMake(rect.origin.x, rect.origin.y), 131 | CGPointMake(rect.origin.x, rect.origin.y+rect.size.height), 0); 132 | CGGradientRelease(gradient); 133 | 134 | CGContextRestoreGState(ctx); 135 | } 136 | 137 | /////////////////////////////////////////////////////////////////////////////////////////////////// 138 | - (CGGradientRef)newGradientWithColors:(UIColor**)colors locations:(CGFloat*)locations 139 | count:(int)count { 140 | CGFloat* components = malloc(sizeof(CGFloat)*4*count); 141 | for (int i = 0; i < count; ++i) { 142 | UIColor* color = colors[i]; 143 | size_t n = CGColorGetNumberOfComponents(color.CGColor); 144 | const CGFloat* rgba = CGColorGetComponents(color.CGColor); 145 | if (n == 2) { 146 | components[i*4] = rgba[0]; 147 | components[i*4+1] = rgba[0]; 148 | components[i*4+2] = rgba[0]; 149 | components[i*4+3] = rgba[1]; 150 | } else if (n == 4) { 151 | components[i*4] = rgba[0]; 152 | components[i*4+1] = rgba[1]; 153 | components[i*4+2] = rgba[2]; 154 | components[i*4+3] = rgba[3]; 155 | } 156 | } 157 | 158 | CGContextRef context = UIGraphicsGetCurrentContext(); 159 | CGColorSpaceRef space = CGBitmapContextGetColorSpace(context); 160 | CGGradientRef gradient = CGGradientCreateWithColorComponents(space, components, locations, count); 161 | free(components); 162 | 163 | return gradient; 164 | } 165 | 166 | 167 | /////////////////////////////////////////////////////////////////////////////////////////////////// 168 | - (CGGradientRef)newGradientWithColors:(UIColor**)colors count:(int)count { 169 | return [self newGradientWithColors:colors locations:nil count:count]; 170 | } 171 | 172 | @end 173 | -------------------------------------------------------------------------------- /Classes/VDFrameworkAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2010-2011 Vincent Demay 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | 18 | #import 19 | #import "VDTabBarController.h" 20 | 21 | @interface VDFrameworkAppDelegate : NSObject { 22 | UIWindow *window; 23 | VDTabBarController *tabBarController; 24 | } 25 | 26 | @property (nonatomic, retain) IBOutlet UIWindow *window; 27 | @property (nonatomic, retain) IBOutlet VDTabBarController *tabBarController; 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /Classes/VDFrameworkAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2010-2011 Vincent Demay 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | 18 | #import "VDFrameworkAppDelegate.h" 19 | 20 | 21 | @implementation VDFrameworkAppDelegate 22 | 23 | @synthesize window; 24 | @synthesize tabBarController; 25 | 26 | 27 | #pragma mark - 28 | #pragma mark Application lifecycle 29 | 30 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 31 | 32 | // Override point for customization after application launch. 33 | 34 | // Add the tab bar controller's view to the window and display. 35 | [self.window addSubview:tabBarController.view]; 36 | [self.window makeKeyAndVisible]; 37 | 38 | // ****************************************************************************** 39 | //You can choose style from HERE 40 | //[tabBarController gradientColorFrom:[UIColor blueColor] to:[UIColor redColor]]; 41 | //[tabBarController reflexiveColor:[UIColor greenColor]]; 42 | // ****************************************************************************** 43 | 44 | return YES; 45 | } 46 | 47 | 48 | - (void)applicationWillResignActive:(UIApplication *)application { 49 | /* 50 | 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. 51 | 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. 52 | */ 53 | } 54 | 55 | 56 | - (void)applicationDidEnterBackground:(UIApplication *)application { 57 | /* 58 | 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. 59 | If your application supports background execution, called instead of applicationWillTerminate: when the user quits. 60 | */ 61 | } 62 | 63 | 64 | - (void)applicationWillEnterForeground:(UIApplication *)application { 65 | /* 66 | Called as part of transition from the background to the inactive state: here you can undo many of the changes made on entering the background. 67 | */ 68 | } 69 | 70 | 71 | - (void)applicationDidBecomeActive:(UIApplication *)application { 72 | /* 73 | 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. 74 | */ 75 | } 76 | 77 | 78 | - (void)applicationWillTerminate:(UIApplication *)application { 79 | /* 80 | Called when the application is about to terminate. 81 | See also applicationDidEnterBackground:. 82 | */ 83 | } 84 | 85 | 86 | #pragma mark - 87 | #pragma mark UITabBarControllerDelegate methods 88 | 89 | /* 90 | // Optional UITabBarControllerDelegate method. 91 | - (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController { 92 | } 93 | */ 94 | 95 | /* 96 | // Optional UITabBarControllerDelegate method. 97 | - (void)tabBarController:(UITabBarController *)tabBarController didEndCustomizingViewControllers:(NSArray *)viewControllers changed:(BOOL)changed { 98 | } 99 | */ 100 | 101 | 102 | #pragma mark - 103 | #pragma mark Memory management 104 | 105 | - (void)applicationDidReceiveMemoryWarning:(UIApplication *)application { 106 | /* 107 | Free up as much memory as possible by purging cached data objects that can be recreated (or reloaded from disk) later. 108 | */ 109 | } 110 | 111 | 112 | - (void)dealloc { 113 | [tabBarController release]; 114 | [window release]; 115 | [super dealloc]; 116 | } 117 | 118 | @end 119 | 120 | -------------------------------------------------------------------------------- /Classes/VDTabBarController.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2010-2011 Vincent Demay 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | 18 | #import 19 | #import "VDButton.h" 20 | 21 | @interface VDTabBarController : UITabBarController { 22 | NSMutableArray *_overbuttons; 23 | 24 | UIColor* _from; 25 | UIColor* _to; 26 | VDTabBarStyle _style; 27 | } 28 | 29 | - (void) reflexiveColor:(UIColor*) color; 30 | - (void) gradientColorFrom:(UIColor*)from to:(UIColor*) to; 31 | 32 | @end 33 | -------------------------------------------------------------------------------- /Classes/VDTabBarController.m: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2010-2011 Vincent Demay 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | 18 | #import "VDTabBarController.h" 19 | #import "VDButton.h" 20 | 21 | @interface VDTabBarController (Private) 22 | -(void) computePosition; 23 | -(void) addCustomElements; 24 | -(void) selectTab:(int)tabID; 25 | @end 26 | 27 | ////////////////////////////////////////////////////////////////////////////////////////////// 28 | 29 | @implementation VDTabBarController 30 | 31 | - (void)loadView { 32 | [super loadView]; 33 | _overbuttons = [[NSMutableArray alloc] initWithCapacity:self.tabBar.items.count]; 34 | } 35 | 36 | - (void)viewDidAppear:(BOOL)animated { 37 | [super viewWillAppear:animated]; 38 | [self addCustomElements]; 39 | } 40 | 41 | - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { 42 | return YES; 43 | } 44 | 45 | - (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation { 46 | [self computePosition]; 47 | } 48 | 49 | 50 | - (void)dealloc { 51 | [_overbuttons release]; 52 | _overbuttons = nil; 53 | [_from release]; 54 | _from = nil; 55 | [_to release]; 56 | _to = nil; 57 | [super dealloc]; 58 | } 59 | 60 | /////////////////////////////////////////////////////////////////////////////////////////////// 61 | #pragma mark configuration 62 | - (void) reflexiveColor:(UIColor*) color { 63 | _from = [color retain]; 64 | _style = VDTabBarReflexiveStyle; 65 | 66 | [self addCustomElements]; 67 | } 68 | 69 | - (void) gradientColorFrom:(UIColor*)from to:(UIColor*) to { 70 | _from = [from retain]; 71 | _to = [to retain]; 72 | _style = VDTabBarGradientStyle; 73 | 74 | [self addCustomElements]; 75 | } 76 | 77 | //////////////////////////////////////////////////////////////////////////////////////////////// 78 | #pragma mark private 79 | 80 | -(void) computePosition { 81 | CGFloat topOfTabBar = self.tabBar.frame.origin.y; 82 | 83 | CGFloat itemSize = self.tabBar.frame.size.width / self.tabBar.items.count; 84 | 85 | for (int i=0; i<_overbuttons.count; i++) { 86 | VDButton *current = (VDButton*)[_overbuttons objectAtIndex:i]; 87 | //current.hidden = NO; 88 | current.frame = CGRectMake(itemSize*i + itemSize/2 - 15, topOfTabBar+5, 30, 30); 89 | } 90 | } 91 | 92 | 93 | -(void)addCustomElements 94 | { 95 | CGFloat topOfTabBar = self.tabBar.frame.origin.y; 96 | 97 | CGFloat itemSize = self.tabBar.frame.size.width / self.tabBar.items.count; 98 | 99 | for (UIView* button in _overbuttons) 100 | [button removeFromSuperview]; 101 | [_overbuttons removeAllObjects]; 102 | 103 | for (int i=0; i 2 | 3 | 4 | 1024 5 | 10D571 6 | 785 7 | 1038.29 8 | 460.00 9 | 10 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 11 | 110 12 | 13 | 14 | YES 15 | 16 | 17 | 18 | YES 19 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 20 | 21 | 22 | YES 23 | 24 | YES 25 | 26 | 27 | YES 28 | 29 | 30 | 31 | YES 32 | 33 | IBFilesOwner 34 | IBCocoaTouchFramework 35 | 36 | 37 | IBFirstResponder 38 | IBCocoaTouchFramework 39 | 40 | 41 | 42 | 274 43 | 44 | YES 45 | 46 | 47 | 306 48 | {{54, 138}, {211, 43}} 49 | 50 | 51 | 3 52 | MQA 53 | 54 | 2 55 | 56 | 57 | NO 58 | YES 59 | NO 60 | IBCocoaTouchFramework 61 | First View 62 | 63 | Helvetica 64 | 36 65 | 16 66 | 67 | 68 | 1 69 | MCAwIDAAA 70 | 71 | 72 | 1 73 | 10 74 | 1 75 | 76 | 77 | 78 | 306 79 | {{22, 236}, {275, 121}} 80 | 81 | NO 82 | YES 83 | YES 84 | NO 85 | IBCocoaTouchFramework 86 | NO 87 | NO 88 | NO 89 | 0.0 90 | 0.0 91 | NO 92 | NO 93 | TG9hZGVkIGJ5IHRoZSBmaXJzdCB2aWV3CmNvbnRyb2xsZXIg4oCUIGFuIGluc3RhbmNlIG9mIEZpcnN0 94 | Vmlld0NvbnRyb2xsZXIg4oCUIHNwZWNpZmllZCBpbiB0aGUgVmlldyBDb250cm9sbGVyIEF0dHJpYnV0 95 | ZXMgaW4gdGhlIE1haW4gV2luZG93IG5pYiBmaWxlLg 96 | 1 97 | 98 | IBCocoaTouchFramework 99 | 100 | 101 | 102 | {320, 411} 103 | 104 | 105 | 3 106 | MQA 107 | 108 | 109 | 110 | IBCocoaTouchFramework 111 | 112 | 113 | 114 | 115 | YES 116 | 117 | 118 | view 119 | 120 | 121 | 122 | 3 123 | 124 | 125 | 126 | 127 | YES 128 | 129 | 0 130 | 131 | 132 | 133 | 134 | 135 | 1 136 | 137 | 138 | YES 139 | 140 | 141 | 142 | 143 | 144 | 145 | -1 146 | 147 | 148 | File's Owner 149 | 150 | 151 | -2 152 | 153 | 154 | 155 | 156 | 5 157 | 158 | 159 | 160 | 161 | 7 162 | 163 | 164 | 165 | 166 | 167 | 168 | YES 169 | 170 | YES 171 | -1.CustomClassName 172 | -2.CustomClassName 173 | 1.IBEditorWindowLastContentRect 174 | 1.IBPluginDependency 175 | 5.IBPluginDependency 176 | 7.IBPluginDependency 177 | 178 | 179 | YES 180 | UIViewController 181 | UIResponder 182 | {{774, 799}, {320, 480}} 183 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 184 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 185 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 186 | 187 | 188 | 189 | YES 190 | 191 | 192 | YES 193 | 194 | 195 | 196 | 197 | YES 198 | 199 | 200 | YES 201 | 202 | 203 | 204 | 7 205 | 206 | 207 | 208 | YES 209 | 210 | NSObject 211 | 212 | IBFrameworkSource 213 | Foundation.framework/Headers/NSError.h 214 | 215 | 216 | 217 | NSObject 218 | 219 | IBFrameworkSource 220 | Foundation.framework/Headers/NSFileManager.h 221 | 222 | 223 | 224 | NSObject 225 | 226 | IBFrameworkSource 227 | Foundation.framework/Headers/NSKeyValueCoding.h 228 | 229 | 230 | 231 | NSObject 232 | 233 | IBFrameworkSource 234 | Foundation.framework/Headers/NSKeyValueObserving.h 235 | 236 | 237 | 238 | NSObject 239 | 240 | IBFrameworkSource 241 | Foundation.framework/Headers/NSKeyedArchiver.h 242 | 243 | 244 | 245 | NSObject 246 | 247 | IBFrameworkSource 248 | Foundation.framework/Headers/NSObject.h 249 | 250 | 251 | 252 | NSObject 253 | 254 | IBFrameworkSource 255 | Foundation.framework/Headers/NSRunLoop.h 256 | 257 | 258 | 259 | NSObject 260 | 261 | IBFrameworkSource 262 | Foundation.framework/Headers/NSThread.h 263 | 264 | 265 | 266 | NSObject 267 | 268 | IBFrameworkSource 269 | Foundation.framework/Headers/NSURL.h 270 | 271 | 272 | 273 | NSObject 274 | 275 | IBFrameworkSource 276 | Foundation.framework/Headers/NSURLConnection.h 277 | 278 | 279 | 280 | NSObject 281 | 282 | IBFrameworkSource 283 | UIKit.framework/Headers/UIAccessibility.h 284 | 285 | 286 | 287 | NSObject 288 | 289 | IBFrameworkSource 290 | UIKit.framework/Headers/UINibLoading.h 291 | 292 | 293 | 294 | NSObject 295 | 296 | IBFrameworkSource 297 | UIKit.framework/Headers/UIResponder.h 298 | 299 | 300 | 301 | UILabel 302 | UIView 303 | 304 | IBFrameworkSource 305 | UIKit.framework/Headers/UILabel.h 306 | 307 | 308 | 309 | UIResponder 310 | NSObject 311 | 312 | 313 | 314 | UIScrollView 315 | UIView 316 | 317 | IBFrameworkSource 318 | UIKit.framework/Headers/UIScrollView.h 319 | 320 | 321 | 322 | UISearchBar 323 | UIView 324 | 325 | IBFrameworkSource 326 | UIKit.framework/Headers/UISearchBar.h 327 | 328 | 329 | 330 | UISearchDisplayController 331 | NSObject 332 | 333 | IBFrameworkSource 334 | UIKit.framework/Headers/UISearchDisplayController.h 335 | 336 | 337 | 338 | UITextView 339 | UIScrollView 340 | 341 | IBFrameworkSource 342 | UIKit.framework/Headers/UITextView.h 343 | 344 | 345 | 346 | UIView 347 | 348 | IBFrameworkSource 349 | UIKit.framework/Headers/UITextField.h 350 | 351 | 352 | 353 | UIView 354 | UIResponder 355 | 356 | IBFrameworkSource 357 | UIKit.framework/Headers/UIView.h 358 | 359 | 360 | 361 | UIViewController 362 | 363 | IBFrameworkSource 364 | UIKit.framework/Headers/UINavigationController.h 365 | 366 | 367 | 368 | UIViewController 369 | 370 | IBFrameworkSource 371 | UIKit.framework/Headers/UIPopoverController.h 372 | 373 | 374 | 375 | UIViewController 376 | 377 | IBFrameworkSource 378 | UIKit.framework/Headers/UISplitViewController.h 379 | 380 | 381 | 382 | UIViewController 383 | 384 | IBFrameworkSource 385 | UIKit.framework/Headers/UITabBarController.h 386 | 387 | 388 | 389 | UIViewController 390 | UIResponder 391 | 392 | IBFrameworkSource 393 | UIKit.framework/Headers/UIViewController.h 394 | 395 | 396 | 397 | 398 | 0 399 | IBCocoaTouchFramework 400 | 401 | com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS 402 | 403 | 404 | 405 | com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 406 | 407 | 408 | YES 409 | VDFramework.xcodeproj 410 | 3 411 | 110 412 | 413 | 414 | -------------------------------------------------------------------------------- /MainWindow.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1056 5 | 10J567 6 | 823 7 | 1038.35 8 | 462.00 9 | 10 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 11 | 132 12 | 13 | 14 | YES 15 | 16 | 17 | 18 | YES 19 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 20 | 21 | 22 | YES 23 | 24 | YES 25 | 26 | 27 | YES 28 | 29 | 30 | 31 | YES 32 | 33 | IBFilesOwner 34 | IBCocoaTouchFramework 35 | 36 | 37 | IBFirstResponder 38 | IBCocoaTouchFramework 39 | 40 | 41 | IBCocoaTouchFramework 42 | 43 | 44 | 45 | 1316 46 | 47 | {320, 480} 48 | 49 | 1 50 | MSAxIDEAA 51 | 52 | NO 53 | NO 54 | 55 | IBCocoaTouchFramework 56 | YES 57 | 58 | 59 | 60 | 61 | 62 | 1 63 | 64 | IBCocoaTouchFramework 65 | NO 66 | 67 | 68 | Item 69 | 70 | NSImage 71 | search.png 72 | 73 | IBCocoaTouchFramework 74 | 75 | 76 | 77 | 78 | 79 | 1 80 | 81 | IBCocoaTouchFramework 82 | NO 83 | 84 | 85 | YES 86 | 87 | 88 | First 89 | 90 | NSImage 91 | favorite.png 92 | 93 | IBCocoaTouchFramework 94 | 95 | 96 | 97 | FirstView 98 | 99 | 1 100 | 101 | IBCocoaTouchFramework 102 | NO 103 | 104 | 105 | 106 | Second 107 | 108 | NSImage 109 | profile.png 110 | 111 | IBCocoaTouchFramework 112 | 113 | 114 | 115 | SecondView 116 | 117 | 1 118 | 119 | IBCocoaTouchFramework 120 | NO 121 | 122 | 123 | 124 | 125 | 126 | 266 127 | {{129, 330}, {163, 49}} 128 | 129 | 3 130 | MCAwAA 131 | 132 | NO 133 | IBCocoaTouchFramework 134 | 135 | 136 | 137 | 138 | 139 | YES 140 | 141 | 142 | window 143 | 144 | 145 | 146 | 9 147 | 148 | 149 | 150 | delegate 151 | 152 | 153 | 154 | 99 155 | 156 | 157 | 158 | tabBarController 159 | 160 | 161 | 162 | 113 163 | 164 | 165 | 166 | 167 | YES 168 | 169 | 0 170 | 171 | 172 | 173 | 174 | 175 | 2 176 | 177 | 178 | YES 179 | 180 | 181 | 182 | 183 | -1 184 | 185 | 186 | File's Owner 187 | 188 | 189 | 3 190 | 191 | 192 | 193 | 194 | 106 195 | 196 | 197 | YES 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 107 207 | 208 | 209 | 210 | 211 | 108 212 | 213 | 214 | YES 215 | 216 | 217 | 218 | 219 | 220 | 109 221 | 222 | 223 | YES 224 | 225 | 226 | 227 | 228 | 229 | 110 230 | 231 | 232 | 233 | 234 | 111 235 | 236 | 237 | 238 | 239 | -2 240 | 241 | 242 | 243 | 244 | 125 245 | 246 | 247 | YES 248 | 249 | 250 | 251 | 252 | 253 | 126 254 | 255 | 256 | 257 | 258 | 259 | 260 | YES 261 | 262 | YES 263 | -1.CustomClassName 264 | -2.CustomClassName 265 | 106.CustomClassName 266 | 106.IBEditorWindowLastContentRect 267 | 106.IBPluginDependency 268 | 107.IBPluginDependency 269 | 108.CustomClassName 270 | 108.IBPluginDependency 271 | 109.IBPluginDependency 272 | 110.IBPluginDependency 273 | 111.IBPluginDependency 274 | 125.IBPluginDependency 275 | 2.IBAttributePlaceholdersKey 276 | 2.IBEditorWindowLastContentRect 277 | 2.IBPluginDependency 278 | 3.CustomClassName 279 | 3.IBPluginDependency 280 | 281 | 282 | YES 283 | UIApplication 284 | UIResponder 285 | VDTabBarController 286 | {{609, 226}, {320, 480}} 287 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 288 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 289 | FirstViewController 290 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 291 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 292 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 293 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 294 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 295 | 296 | YES 297 | 298 | 299 | YES 300 | 301 | 302 | {{229, 373}, {320, 480}} 303 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 304 | VDFrameworkAppDelegate 305 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 306 | 307 | 308 | 309 | YES 310 | 311 | 312 | YES 313 | 314 | 315 | 316 | 317 | YES 318 | 319 | 320 | YES 321 | 322 | 323 | 324 | 126 325 | 326 | 327 | 328 | YES 329 | 330 | FirstViewController 331 | UIViewController 332 | 333 | IBProjectSource 334 | Classes/FirstViewController.h 335 | 336 | 337 | 338 | UIWindow 339 | UIView 340 | 341 | IBUserSource 342 | 343 | 344 | 345 | 346 | VDFrameworkAppDelegate 347 | NSObject 348 | 349 | YES 350 | 351 | YES 352 | tabBarController 353 | window 354 | 355 | 356 | YES 357 | UITabBarController 358 | UIWindow 359 | 360 | 361 | 362 | YES 363 | 364 | YES 365 | tabBarController 366 | window 367 | 368 | 369 | YES 370 | 371 | tabBarController 372 | UITabBarController 373 | 374 | 375 | window 376 | UIWindow 377 | 378 | 379 | 380 | 381 | IBProjectSource 382 | Classes/VDFrameworkAppDelegate.h 383 | 384 | 385 | 386 | VDTabBarController 387 | UITabBarController 388 | 389 | IBProjectSource 390 | VDTabBarController.h 391 | 392 | 393 | 394 | 395 | YES 396 | 397 | NSObject 398 | 399 | IBFrameworkSource 400 | Foundation.framework/Headers/NSError.h 401 | 402 | 403 | 404 | NSObject 405 | 406 | IBFrameworkSource 407 | Foundation.framework/Headers/NSFileManager.h 408 | 409 | 410 | 411 | NSObject 412 | 413 | IBFrameworkSource 414 | Foundation.framework/Headers/NSKeyValueCoding.h 415 | 416 | 417 | 418 | NSObject 419 | 420 | IBFrameworkSource 421 | Foundation.framework/Headers/NSKeyValueObserving.h 422 | 423 | 424 | 425 | NSObject 426 | 427 | IBFrameworkSource 428 | Foundation.framework/Headers/NSKeyedArchiver.h 429 | 430 | 431 | 432 | NSObject 433 | 434 | IBFrameworkSource 435 | Foundation.framework/Headers/NSObject.h 436 | 437 | 438 | 439 | NSObject 440 | 441 | IBFrameworkSource 442 | Foundation.framework/Headers/NSRunLoop.h 443 | 444 | 445 | 446 | NSObject 447 | 448 | IBFrameworkSource 449 | Foundation.framework/Headers/NSThread.h 450 | 451 | 452 | 453 | NSObject 454 | 455 | IBFrameworkSource 456 | Foundation.framework/Headers/NSURL.h 457 | 458 | 459 | 460 | NSObject 461 | 462 | IBFrameworkSource 463 | Foundation.framework/Headers/NSURLConnection.h 464 | 465 | 466 | 467 | NSObject 468 | 469 | IBFrameworkSource 470 | UIKit.framework/Headers/UIAccessibility.h 471 | 472 | 473 | 474 | NSObject 475 | 476 | IBFrameworkSource 477 | UIKit.framework/Headers/UINibLoading.h 478 | 479 | 480 | 481 | NSObject 482 | 483 | IBFrameworkSource 484 | UIKit.framework/Headers/UIResponder.h 485 | 486 | 487 | 488 | UIApplication 489 | UIResponder 490 | 491 | IBFrameworkSource 492 | UIKit.framework/Headers/UIApplication.h 493 | 494 | 495 | 496 | UIBarItem 497 | NSObject 498 | 499 | IBFrameworkSource 500 | UIKit.framework/Headers/UIBarItem.h 501 | 502 | 503 | 504 | UIResponder 505 | NSObject 506 | 507 | 508 | 509 | UISearchBar 510 | UIView 511 | 512 | IBFrameworkSource 513 | UIKit.framework/Headers/UISearchBar.h 514 | 515 | 516 | 517 | UISearchDisplayController 518 | NSObject 519 | 520 | IBFrameworkSource 521 | UIKit.framework/Headers/UISearchDisplayController.h 522 | 523 | 524 | 525 | UITabBar 526 | UIView 527 | 528 | IBFrameworkSource 529 | UIKit.framework/Headers/UITabBar.h 530 | 531 | 532 | 533 | UITabBarController 534 | UIViewController 535 | 536 | IBFrameworkSource 537 | UIKit.framework/Headers/UITabBarController.h 538 | 539 | 540 | 541 | UITabBarItem 542 | UIBarItem 543 | 544 | IBFrameworkSource 545 | UIKit.framework/Headers/UITabBarItem.h 546 | 547 | 548 | 549 | UIView 550 | 551 | IBFrameworkSource 552 | UIKit.framework/Headers/UIPrintFormatter.h 553 | 554 | 555 | 556 | UIView 557 | 558 | IBFrameworkSource 559 | UIKit.framework/Headers/UITextField.h 560 | 561 | 562 | 563 | UIView 564 | UIResponder 565 | 566 | IBFrameworkSource 567 | UIKit.framework/Headers/UIView.h 568 | 569 | 570 | 571 | UIViewController 572 | 573 | IBFrameworkSource 574 | UIKit.framework/Headers/UINavigationController.h 575 | 576 | 577 | 578 | UIViewController 579 | 580 | IBFrameworkSource 581 | UIKit.framework/Headers/UIPopoverController.h 582 | 583 | 584 | 585 | UIViewController 586 | 587 | IBFrameworkSource 588 | UIKit.framework/Headers/UISplitViewController.h 589 | 590 | 591 | 592 | UIViewController 593 | 594 | 595 | 596 | UIViewController 597 | UIResponder 598 | 599 | IBFrameworkSource 600 | UIKit.framework/Headers/UIViewController.h 601 | 602 | 603 | 604 | UIWindow 605 | UIView 606 | 607 | IBFrameworkSource 608 | UIKit.framework/Headers/UIWindow.h 609 | 610 | 611 | 612 | 613 | 0 614 | IBCocoaTouchFramework 615 | 616 | com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS 617 | 618 | 619 | 620 | com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 621 | 622 | 623 | YES 624 | VDFramework.xcodeproj 625 | 3 626 | 627 | YES 628 | 629 | YES 630 | favorite.png 631 | profile.png 632 | search.png 633 | 634 | 635 | YES 636 | {30, 30} 637 | {30, 30} 638 | {30, 30} 639 | 640 | 641 | 132 642 | 643 | 644 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | 2 | # VDFramework 3 | 4 | ## Description 5 | 6 | VDFramework aims to give open source component to make easier iOs dev. 7 | 8 | For now there is only a VDTabBarController which can be customized to display custom decoration on images in it. 9 | 10 | ## VDTabBarController 11 | 12 | A Controller allowing you to choose the style of the items based on the standard UITabBarController (all its features are also available) 13 | 14 | You can customize items specifying gradient or reflexive color. 15 | 16 | 17 | See Classes/VDFrameworkAppDelegate.m to understand how to use VDTabBarController : 18 | 19 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 20 | 21 | // Override point for customization after application launch. 22 | 23 | // Add the tab bar controller's view to the window and display. 24 | [self.window addSubview:tabBarController.view]; 25 | [self.window makeKeyAndVisible]; 26 | 27 | // ****************************************************************************** 28 | //You can choose style from HERE 29 | //[tabBarController gradientColorFrom:[UIColor blueColor] to:[UIColor redColor]]; 30 | //[tabBarController reflexiveColor:[UIColor greenColor]]; 31 | // ****************************************************************************** 32 | 33 | return YES; 34 | } 35 | 36 | ### Limitations 37 | 38 | * Does not work with SystemTabBarItem 39 | * Images in items have to be 30x30 40 | 41 | 42 | ## Sample 43 | 44 | ### Default / Gradient / Reflexive 45 | [![](https://github.com/vdemay/VDFramework/raw/master/Documents/default.png)](https://github.com/vdemay/VDFramework/raw/master/Documents/default.png) 46 | [![](https://github.com/vdemay/VDFramework/raw/master/Documents/gradient.png)](https://github.com/vdemay/VDFramework/raw/master/Documents/gradient.png) 47 | [![](https://github.com/vdemay/VDFramework/raw/master/Documents/reflexive.png)](https://github.com/vdemay/VDFramework/raw/master/Documents/reflexive.png) 48 | 49 | ## License and Copyright 50 | 51 | Apache 2 52 | -------------------------------------------------------------------------------- /SecondView.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1024 5 | 10D571 6 | 785 7 | 1038.29 8 | 460.00 9 | 10 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 11 | 110 12 | 13 | 14 | YES 15 | 16 | 17 | 18 | YES 19 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 20 | 21 | 22 | YES 23 | 24 | YES 25 | 26 | 27 | YES 28 | 29 | 30 | 31 | YES 32 | 33 | IBFilesOwner 34 | IBCocoaTouchFramework 35 | 36 | 37 | IBFirstResponder 38 | IBCocoaTouchFramework 39 | 40 | 41 | 42 | 274 43 | 44 | YES 45 | 46 | 47 | 306 48 | {{54, 138}, {211, 43}} 49 | 50 | 51 | 3 52 | MQA 53 | 54 | 2 55 | 56 | 57 | NO 58 | YES 59 | NO 60 | IBCocoaTouchFramework 61 | Second View 62 | 63 | Helvetica 64 | 36 65 | 16 66 | 67 | 68 | 1 69 | MCAwIDAAA 70 | 71 | 72 | 1 73 | 10 74 | 1 75 | 76 | 77 | 78 | 306 79 | {{22, 236}, {275, 121}} 80 | 81 | NO 82 | YES 83 | YES 84 | NO 85 | IBCocoaTouchFramework 86 | NO 87 | NO 88 | NO 89 | 0.0 90 | 0.0 91 | NO 92 | NO 93 | TG9hZGVkIGJ5IHRoZSBzZWNvbmQgdmlldwpjb250cm9sbGVyIOKAlCBhbiBpbnN0YW5jZSBvZiBVSVZp 94 | ZXdDb250cm9sbGVyIOKAlCBzcGVjaWZpZWQgaW4gdGhlIFZpZXcgQ29udHJvbGxlciBBdHRyaWJ1dGVz 95 | IGluIHRoZSBNYWluIFdpbmRvdyBuaWIgZmlsZS4 96 | 1 97 | 98 | IBCocoaTouchFramework 99 | 100 | 101 | 102 | {320, 411} 103 | 104 | 105 | 3 106 | MQA 107 | 108 | 109 | 110 | IBCocoaTouchFramework 111 | 112 | 113 | 114 | 115 | YES 116 | 117 | 118 | view 119 | 120 | 121 | 122 | 3 123 | 124 | 125 | 126 | 127 | YES 128 | 129 | 0 130 | 131 | 132 | 133 | 134 | 135 | 1 136 | 137 | 138 | YES 139 | 140 | 141 | 142 | 143 | 144 | 145 | -1 146 | 147 | 148 | File's Owner 149 | 150 | 151 | -2 152 | 153 | 154 | 155 | 156 | 5 157 | 158 | 159 | 160 | 161 | 7 162 | 163 | 164 | 165 | 166 | 167 | 168 | YES 169 | 170 | YES 171 | -1.CustomClassName 172 | -2.CustomClassName 173 | 1.IBEditorWindowLastContentRect 174 | 1.IBPluginDependency 175 | 5.IBPluginDependency 176 | 7.IBPluginDependency 177 | 178 | 179 | YES 180 | UIViewController 181 | UIResponder 182 | {{187, 376}, {320, 480}} 183 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 184 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 185 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 186 | 187 | 188 | 189 | YES 190 | 191 | 192 | YES 193 | 194 | 195 | 196 | 197 | YES 198 | 199 | 200 | YES 201 | 202 | 203 | 204 | 7 205 | 206 | 207 | 208 | YES 209 | 210 | NSObject 211 | 212 | IBFrameworkSource 213 | Foundation.framework/Headers/NSError.h 214 | 215 | 216 | 217 | NSObject 218 | 219 | IBFrameworkSource 220 | Foundation.framework/Headers/NSFileManager.h 221 | 222 | 223 | 224 | NSObject 225 | 226 | IBFrameworkSource 227 | Foundation.framework/Headers/NSKeyValueCoding.h 228 | 229 | 230 | 231 | NSObject 232 | 233 | IBFrameworkSource 234 | Foundation.framework/Headers/NSKeyValueObserving.h 235 | 236 | 237 | 238 | NSObject 239 | 240 | IBFrameworkSource 241 | Foundation.framework/Headers/NSKeyedArchiver.h 242 | 243 | 244 | 245 | NSObject 246 | 247 | IBFrameworkSource 248 | Foundation.framework/Headers/NSObject.h 249 | 250 | 251 | 252 | NSObject 253 | 254 | IBFrameworkSource 255 | Foundation.framework/Headers/NSRunLoop.h 256 | 257 | 258 | 259 | NSObject 260 | 261 | IBFrameworkSource 262 | Foundation.framework/Headers/NSThread.h 263 | 264 | 265 | 266 | NSObject 267 | 268 | IBFrameworkSource 269 | Foundation.framework/Headers/NSURL.h 270 | 271 | 272 | 273 | NSObject 274 | 275 | IBFrameworkSource 276 | Foundation.framework/Headers/NSURLConnection.h 277 | 278 | 279 | 280 | NSObject 281 | 282 | IBFrameworkSource 283 | UIKit.framework/Headers/UIAccessibility.h 284 | 285 | 286 | 287 | NSObject 288 | 289 | IBFrameworkSource 290 | UIKit.framework/Headers/UINibLoading.h 291 | 292 | 293 | 294 | NSObject 295 | 296 | IBFrameworkSource 297 | UIKit.framework/Headers/UIResponder.h 298 | 299 | 300 | 301 | UILabel 302 | UIView 303 | 304 | IBFrameworkSource 305 | UIKit.framework/Headers/UILabel.h 306 | 307 | 308 | 309 | UIResponder 310 | NSObject 311 | 312 | 313 | 314 | UIScrollView 315 | UIView 316 | 317 | IBFrameworkSource 318 | UIKit.framework/Headers/UIScrollView.h 319 | 320 | 321 | 322 | UISearchBar 323 | UIView 324 | 325 | IBFrameworkSource 326 | UIKit.framework/Headers/UISearchBar.h 327 | 328 | 329 | 330 | UISearchDisplayController 331 | NSObject 332 | 333 | IBFrameworkSource 334 | UIKit.framework/Headers/UISearchDisplayController.h 335 | 336 | 337 | 338 | UITextView 339 | UIScrollView 340 | 341 | IBFrameworkSource 342 | UIKit.framework/Headers/UITextView.h 343 | 344 | 345 | 346 | UIView 347 | 348 | IBFrameworkSource 349 | UIKit.framework/Headers/UITextField.h 350 | 351 | 352 | 353 | UIView 354 | UIResponder 355 | 356 | IBFrameworkSource 357 | UIKit.framework/Headers/UIView.h 358 | 359 | 360 | 361 | UIViewController 362 | 363 | IBFrameworkSource 364 | UIKit.framework/Headers/UINavigationController.h 365 | 366 | 367 | 368 | UIViewController 369 | 370 | IBFrameworkSource 371 | UIKit.framework/Headers/UIPopoverController.h 372 | 373 | 374 | 375 | UIViewController 376 | 377 | IBFrameworkSource 378 | UIKit.framework/Headers/UISplitViewController.h 379 | 380 | 381 | 382 | UIViewController 383 | 384 | IBFrameworkSource 385 | UIKit.framework/Headers/UITabBarController.h 386 | 387 | 388 | 389 | UIViewController 390 | UIResponder 391 | 392 | IBFrameworkSource 393 | UIKit.framework/Headers/UIViewController.h 394 | 395 | 396 | 397 | 398 | 0 399 | IBCocoaTouchFramework 400 | 401 | com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS 402 | 403 | 404 | 405 | com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 406 | 407 | 408 | YES 409 | VDFramework.xcodeproj 410 | 3 411 | 110 412 | 413 | 414 | -------------------------------------------------------------------------------- /ThirdView.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 1024 5 | 10F569 6 | 804 7 | 1038.29 8 | 461.00 9 | 10 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 11 | 123 12 | 13 | 14 | YES 15 | 16 | 17 | 18 | YES 19 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 20 | 21 | 22 | YES 23 | 24 | YES 25 | 26 | 27 | YES 28 | 29 | 30 | 31 | YES 32 | 33 | IBFilesOwner 34 | IBCocoaTouchFramework 35 | 36 | 37 | IBFirstResponder 38 | IBCocoaTouchFramework 39 | 40 | 41 | 42 | 274 43 | 44 | YES 45 | 46 | 47 | 292 48 | {{48, 31}, {228, 57}} 49 | 50 | NO 51 | YES 52 | 7 53 | NO 54 | IBCocoaTouchFramework 55 | Third View 56 | 57 | Helvetica 58 | 48 59 | 16 60 | 61 | 62 | 1 63 | MCAwIDAAA 64 | 65 | 66 | 3 67 | MQA 68 | 69 | 1 70 | 10 71 | 72 | 73 | {320, 460} 74 | 75 | 76 | 3 77 | MQA 78 | 79 | 2 80 | 81 | 82 | 83 | IBCocoaTouchFramework 84 | 85 | 86 | 87 | 88 | YES 89 | 90 | 91 | view 92 | 93 | 94 | 95 | 3 96 | 97 | 98 | 99 | 100 | YES 101 | 102 | 0 103 | 104 | 105 | 106 | 107 | 108 | 1 109 | 110 | 111 | YES 112 | 113 | 114 | 115 | 116 | 117 | -1 118 | 119 | 120 | File's Owner 121 | 122 | 123 | -2 124 | 125 | 126 | 127 | 128 | 4 129 | 130 | 131 | 132 | 133 | 134 | 135 | YES 136 | 137 | YES 138 | -1.CustomClassName 139 | -2.CustomClassName 140 | 1.IBEditorWindowLastContentRect 141 | 1.IBPluginDependency 142 | 4.IBPluginDependency 143 | 4.IBViewBoundsToFrameTransform 144 | 145 | 146 | YES 147 | FirstViewController 148 | UIResponder 149 | {{556, 376}, {320, 480}} 150 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 151 | com.apple.InterfaceBuilder.IBCocoaTouchPlugin 152 | 153 | AUJAAABB+AAAA 154 | 155 | 156 | 157 | 158 | YES 159 | 160 | 161 | YES 162 | 163 | 164 | 165 | 166 | YES 167 | 168 | 169 | YES 170 | 171 | 172 | 173 | 4 174 | 175 | 176 | 177 | YES 178 | 179 | FirstViewController 180 | UIViewController 181 | 182 | IBProjectSource 183 | Classes/FirstViewController.h 184 | 185 | 186 | 187 | 188 | YES 189 | 190 | NSObject 191 | 192 | IBFrameworkSource 193 | Foundation.framework/Headers/NSError.h 194 | 195 | 196 | 197 | NSObject 198 | 199 | IBFrameworkSource 200 | Foundation.framework/Headers/NSFileManager.h 201 | 202 | 203 | 204 | NSObject 205 | 206 | IBFrameworkSource 207 | Foundation.framework/Headers/NSKeyValueCoding.h 208 | 209 | 210 | 211 | NSObject 212 | 213 | IBFrameworkSource 214 | Foundation.framework/Headers/NSKeyValueObserving.h 215 | 216 | 217 | 218 | NSObject 219 | 220 | IBFrameworkSource 221 | Foundation.framework/Headers/NSKeyedArchiver.h 222 | 223 | 224 | 225 | NSObject 226 | 227 | IBFrameworkSource 228 | Foundation.framework/Headers/NSObject.h 229 | 230 | 231 | 232 | NSObject 233 | 234 | IBFrameworkSource 235 | Foundation.framework/Headers/NSRunLoop.h 236 | 237 | 238 | 239 | NSObject 240 | 241 | IBFrameworkSource 242 | Foundation.framework/Headers/NSThread.h 243 | 244 | 245 | 246 | NSObject 247 | 248 | IBFrameworkSource 249 | Foundation.framework/Headers/NSURL.h 250 | 251 | 252 | 253 | NSObject 254 | 255 | IBFrameworkSource 256 | Foundation.framework/Headers/NSURLConnection.h 257 | 258 | 259 | 260 | NSObject 261 | 262 | IBFrameworkSource 263 | UIKit.framework/Headers/UIAccessibility.h 264 | 265 | 266 | 267 | NSObject 268 | 269 | IBFrameworkSource 270 | UIKit.framework/Headers/UINibLoading.h 271 | 272 | 273 | 274 | NSObject 275 | 276 | IBFrameworkSource 277 | UIKit.framework/Headers/UIResponder.h 278 | 279 | 280 | 281 | UILabel 282 | UIView 283 | 284 | IBFrameworkSource 285 | UIKit.framework/Headers/UILabel.h 286 | 287 | 288 | 289 | UIResponder 290 | NSObject 291 | 292 | 293 | 294 | UISearchBar 295 | UIView 296 | 297 | IBFrameworkSource 298 | UIKit.framework/Headers/UISearchBar.h 299 | 300 | 301 | 302 | UISearchDisplayController 303 | NSObject 304 | 305 | IBFrameworkSource 306 | UIKit.framework/Headers/UISearchDisplayController.h 307 | 308 | 309 | 310 | UIView 311 | 312 | IBFrameworkSource 313 | UIKit.framework/Headers/UITextField.h 314 | 315 | 316 | 317 | UIView 318 | UIResponder 319 | 320 | IBFrameworkSource 321 | UIKit.framework/Headers/UIView.h 322 | 323 | 324 | 325 | UIViewController 326 | 327 | IBFrameworkSource 328 | UIKit.framework/Headers/UINavigationController.h 329 | 330 | 331 | 332 | UIViewController 333 | 334 | IBFrameworkSource 335 | UIKit.framework/Headers/UIPopoverController.h 336 | 337 | 338 | 339 | UIViewController 340 | 341 | IBFrameworkSource 342 | UIKit.framework/Headers/UISplitViewController.h 343 | 344 | 345 | 346 | UIViewController 347 | 348 | IBFrameworkSource 349 | UIKit.framework/Headers/UITabBarController.h 350 | 351 | 352 | 353 | UIViewController 354 | UIResponder 355 | 356 | IBFrameworkSource 357 | UIKit.framework/Headers/UIViewController.h 358 | 359 | 360 | 361 | 362 | 0 363 | IBCocoaTouchFramework 364 | 365 | com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS 366 | 367 | 368 | 369 | com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 370 | 371 | 372 | YES 373 | RumexCustomTabBar.xcodeproj 374 | 3 375 | 123 376 | 377 | 378 | -------------------------------------------------------------------------------- /VDFramework-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIconFile 12 | 13 | CFBundleIdentifier 14 | com.yourcompany.${PRODUCT_NAME:rfc1034identifier} 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | ${PRODUCT_NAME} 19 | CFBundlePackageType 20 | APPL 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | NSMainNibFile 28 | MainWindow 29 | 30 | 31 | -------------------------------------------------------------------------------- /VDFramework.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 45; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1D3623260D0F684500981E51 /* VDFrameworkAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3623250D0F684500981E51 /* VDFrameworkAppDelegate.m */; }; 11 | 1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; }; 12 | 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; 13 | 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; 14 | 28216C970DB411BC00E5133A /* FirstViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28216C960DB411BC00E5133A /* FirstViewController.m */; }; 15 | 282CCBFE0DB6C98000C4EA27 /* SecondView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 282CCBFD0DB6C98000C4EA27 /* SecondView.xib */; }; 16 | 2840D7CE1179279E00D7F93C /* FirstView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2840D7CD1179279E00D7F93C /* FirstView.xib */; }; 17 | 288765080DF74369002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765070DF74369002DB57D /* CoreGraphics.framework */; }; 18 | 28AD73880D9D96C1002E5188 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28AD73870D9D96C1002E5188 /* MainWindow.xib */; }; 19 | 2ED78A9F1385572000193585 /* search.png in Resources */ = {isa = PBXBuildFile; fileRef = 2ED78A9C1385572000193585 /* search.png */; }; 20 | 2ED78AA01385572000193585 /* favorite.png in Resources */ = {isa = PBXBuildFile; fileRef = 2ED78A9D1385572000193585 /* favorite.png */; }; 21 | 2ED78AA11385572000193585 /* profile.png in Resources */ = {isa = PBXBuildFile; fileRef = 2ED78A9E1385572000193585 /* profile.png */; }; 22 | 2ED78AA41385573000193585 /* VDTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ED78AA31385573000193585 /* VDTabBarController.m */; }; 23 | 2ED78AA81385574900193585 /* VDButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ED78AA71385574900193585 /* VDButton.m */; }; 24 | 2ED78AAA1385577300193585 /* ThirdView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2ED78AA91385577300193585 /* ThirdView.xib */; }; 25 | /* End PBXBuildFile section */ 26 | 27 | /* Begin PBXFileReference section */ 28 | 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 29 | 1D3623240D0F684500981E51 /* VDFrameworkAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VDFrameworkAppDelegate.h; sourceTree = ""; }; 30 | 1D3623250D0F684500981E51 /* VDFrameworkAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VDFrameworkAppDelegate.m; sourceTree = ""; }; 31 | 1D6058910D05DD3D006BFB54 /* VDFramework.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = VDFramework.app; sourceTree = BUILT_PRODUCTS_DIR; }; 32 | 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 33 | 28216C950DB411BC00E5133A /* FirstViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstViewController.h; sourceTree = ""; }; 34 | 28216C960DB411BC00E5133A /* FirstViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstViewController.m; sourceTree = ""; }; 35 | 282CCBFD0DB6C98000C4EA27 /* SecondView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SecondView.xib; sourceTree = ""; }; 36 | 2840D7CD1179279E00D7F93C /* FirstView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FirstView.xib; sourceTree = ""; }; 37 | 288765070DF74369002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 38 | 28A0AB4B0D9B1048005BE974 /* VDFramework_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VDFramework_Prefix.pch; sourceTree = ""; }; 39 | 28AD73870D9D96C1002E5188 /* MainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MainWindow.xib; sourceTree = ""; }; 40 | 29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 41 | 2ED78A9C1385572000193585 /* search.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = search.png; sourceTree = ""; }; 42 | 2ED78A9D1385572000193585 /* favorite.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = favorite.png; sourceTree = ""; }; 43 | 2ED78A9E1385572000193585 /* profile.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = profile.png; sourceTree = ""; }; 44 | 2ED78AA21385573000193585 /* VDTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VDTabBarController.h; path = Classes/VDTabBarController.h; sourceTree = ""; }; 45 | 2ED78AA31385573000193585 /* VDTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VDTabBarController.m; path = Classes/VDTabBarController.m; sourceTree = ""; }; 46 | 2ED78AA61385574900193585 /* VDButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VDButton.h; path = Classes/VDButton.h; sourceTree = ""; }; 47 | 2ED78AA71385574900193585 /* VDButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VDButton.m; path = Classes/VDButton.m; sourceTree = ""; }; 48 | 2ED78AA91385577300193585 /* ThirdView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ThirdView.xib; sourceTree = ""; }; 49 | 8D1107310486CEB800E47090 /* VDFramework-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "VDFramework-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = ""; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 1D60588F0D05DD3D006BFB54 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */, 58 | 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */, 59 | 288765080DF74369002DB57D /* CoreGraphics.framework in Frameworks */, 60 | ); 61 | runOnlyForDeploymentPostprocessing = 0; 62 | }; 63 | /* End PBXFrameworksBuildPhase section */ 64 | 65 | /* Begin PBXGroup section */ 66 | 080E96DDFE201D6D7F000001 /* Classes */ = { 67 | isa = PBXGroup; 68 | children = ( 69 | 2ED78A91138556DE00193585 /* Framework */, 70 | 28216C950DB411BC00E5133A /* FirstViewController.h */, 71 | 28216C960DB411BC00E5133A /* FirstViewController.m */, 72 | 1D3623240D0F684500981E51 /* VDFrameworkAppDelegate.h */, 73 | 1D3623250D0F684500981E51 /* VDFrameworkAppDelegate.m */, 74 | ); 75 | path = Classes; 76 | sourceTree = ""; 77 | }; 78 | 19C28FACFE9D520D11CA2CBB /* Products */ = { 79 | isa = PBXGroup; 80 | children = ( 81 | 1D6058910D05DD3D006BFB54 /* VDFramework.app */, 82 | ); 83 | name = Products; 84 | sourceTree = ""; 85 | }; 86 | 29B97314FDCFA39411CA2CEA /* VDFramework */ = { 87 | isa = PBXGroup; 88 | children = ( 89 | 080E96DDFE201D6D7F000001 /* Classes */, 90 | 29B97315FDCFA39411CA2CEA /* Other Sources */, 91 | 29B97317FDCFA39411CA2CEA /* Resources */, 92 | 29B97323FDCFA39411CA2CEA /* Frameworks */, 93 | 19C28FACFE9D520D11CA2CBB /* Products */, 94 | ); 95 | name = VDFramework; 96 | sourceTree = ""; 97 | }; 98 | 29B97315FDCFA39411CA2CEA /* Other Sources */ = { 99 | isa = PBXGroup; 100 | children = ( 101 | 28A0AB4B0D9B1048005BE974 /* VDFramework_Prefix.pch */, 102 | 29B97316FDCFA39411CA2CEA /* main.m */, 103 | ); 104 | name = "Other Sources"; 105 | sourceTree = ""; 106 | }; 107 | 29B97317FDCFA39411CA2CEA /* Resources */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 2ED78A9A1385570400193585 /* Sample */, 111 | 2840D7CD1179279E00D7F93C /* FirstView.xib */, 112 | 282CCBFD0DB6C98000C4EA27 /* SecondView.xib */, 113 | 2ED78AA91385577300193585 /* ThirdView.xib */, 114 | 28AD73870D9D96C1002E5188 /* MainWindow.xib */, 115 | 8D1107310486CEB800E47090 /* VDFramework-Info.plist */, 116 | ); 117 | name = Resources; 118 | sourceTree = ""; 119 | }; 120 | 29B97323FDCFA39411CA2CEA /* Frameworks */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */, 124 | 1D30AB110D05D00D00671497 /* Foundation.framework */, 125 | 288765070DF74369002DB57D /* CoreGraphics.framework */, 126 | ); 127 | name = Frameworks; 128 | sourceTree = ""; 129 | }; 130 | 2ED78A91138556DE00193585 /* Framework */ = { 131 | isa = PBXGroup; 132 | children = ( 133 | 2ED78A99138556F200193585 /* TabBar */, 134 | ); 135 | name = Framework; 136 | path = ..; 137 | sourceTree = ""; 138 | }; 139 | 2ED78A99138556F200193585 /* TabBar */ = { 140 | isa = PBXGroup; 141 | children = ( 142 | 2ED78AA51385573D00193585 /* TabBarItem */, 143 | 2ED78AA21385573000193585 /* VDTabBarController.h */, 144 | 2ED78AA31385573000193585 /* VDTabBarController.m */, 145 | ); 146 | name = TabBar; 147 | sourceTree = ""; 148 | }; 149 | 2ED78A9A1385570400193585 /* Sample */ = { 150 | isa = PBXGroup; 151 | children = ( 152 | 2ED78A9C1385572000193585 /* search.png */, 153 | 2ED78A9D1385572000193585 /* favorite.png */, 154 | 2ED78A9E1385572000193585 /* profile.png */, 155 | ); 156 | name = Sample; 157 | sourceTree = ""; 158 | }; 159 | 2ED78AA51385573D00193585 /* TabBarItem */ = { 160 | isa = PBXGroup; 161 | children = ( 162 | 2ED78AA61385574900193585 /* VDButton.h */, 163 | 2ED78AA71385574900193585 /* VDButton.m */, 164 | ); 165 | name = TabBarItem; 166 | sourceTree = ""; 167 | }; 168 | /* End PBXGroup section */ 169 | 170 | /* Begin PBXNativeTarget section */ 171 | 1D6058900D05DD3D006BFB54 /* VDFramework */ = { 172 | isa = PBXNativeTarget; 173 | buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "VDFramework" */; 174 | buildPhases = ( 175 | 1D60588D0D05DD3D006BFB54 /* Resources */, 176 | 1D60588E0D05DD3D006BFB54 /* Sources */, 177 | 1D60588F0D05DD3D006BFB54 /* Frameworks */, 178 | ); 179 | buildRules = ( 180 | ); 181 | dependencies = ( 182 | ); 183 | name = VDFramework; 184 | productName = VDFramework; 185 | productReference = 1D6058910D05DD3D006BFB54 /* VDFramework.app */; 186 | productType = "com.apple.product-type.application"; 187 | }; 188 | /* End PBXNativeTarget section */ 189 | 190 | /* Begin PBXProject section */ 191 | 29B97313FDCFA39411CA2CEA /* Project object */ = { 192 | isa = PBXProject; 193 | buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "VDFramework" */; 194 | compatibilityVersion = "Xcode 3.1"; 195 | developmentRegion = English; 196 | hasScannedForEncodings = 1; 197 | knownRegions = ( 198 | English, 199 | Japanese, 200 | French, 201 | German, 202 | ); 203 | mainGroup = 29B97314FDCFA39411CA2CEA /* VDFramework */; 204 | projectDirPath = ""; 205 | projectRoot = ""; 206 | targets = ( 207 | 1D6058900D05DD3D006BFB54 /* VDFramework */, 208 | ); 209 | }; 210 | /* End PBXProject section */ 211 | 212 | /* Begin PBXResourcesBuildPhase section */ 213 | 1D60588D0D05DD3D006BFB54 /* Resources */ = { 214 | isa = PBXResourcesBuildPhase; 215 | buildActionMask = 2147483647; 216 | files = ( 217 | 28AD73880D9D96C1002E5188 /* MainWindow.xib in Resources */, 218 | 282CCBFE0DB6C98000C4EA27 /* SecondView.xib in Resources */, 219 | 2840D7CE1179279E00D7F93C /* FirstView.xib in Resources */, 220 | 2ED78A9F1385572000193585 /* search.png in Resources */, 221 | 2ED78AA01385572000193585 /* favorite.png in Resources */, 222 | 2ED78AA11385572000193585 /* profile.png in Resources */, 223 | 2ED78AAA1385577300193585 /* ThirdView.xib in Resources */, 224 | ); 225 | runOnlyForDeploymentPostprocessing = 0; 226 | }; 227 | /* End PBXResourcesBuildPhase section */ 228 | 229 | /* Begin PBXSourcesBuildPhase section */ 230 | 1D60588E0D05DD3D006BFB54 /* Sources */ = { 231 | isa = PBXSourcesBuildPhase; 232 | buildActionMask = 2147483647; 233 | files = ( 234 | 1D60589B0D05DD56006BFB54 /* main.m in Sources */, 235 | 1D3623260D0F684500981E51 /* VDFrameworkAppDelegate.m in Sources */, 236 | 28216C970DB411BC00E5133A /* FirstViewController.m in Sources */, 237 | 2ED78AA41385573000193585 /* VDTabBarController.m in Sources */, 238 | 2ED78AA81385574900193585 /* VDButton.m in Sources */, 239 | ); 240 | runOnlyForDeploymentPostprocessing = 0; 241 | }; 242 | /* End PBXSourcesBuildPhase section */ 243 | 244 | /* Begin XCBuildConfiguration section */ 245 | 1D6058940D05DD3E006BFB54 /* Debug */ = { 246 | isa = XCBuildConfiguration; 247 | buildSettings = { 248 | ALWAYS_SEARCH_USER_PATHS = NO; 249 | COPY_PHASE_STRIP = NO; 250 | GCC_DYNAMIC_NO_PIC = NO; 251 | GCC_OPTIMIZATION_LEVEL = 0; 252 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 253 | GCC_PREFIX_HEADER = VDFramework_Prefix.pch; 254 | INFOPLIST_FILE = "VDFramework-Info.plist"; 255 | PRODUCT_NAME = VDFramework; 256 | }; 257 | name = Debug; 258 | }; 259 | 1D6058950D05DD3E006BFB54 /* Release */ = { 260 | isa = XCBuildConfiguration; 261 | buildSettings = { 262 | ALWAYS_SEARCH_USER_PATHS = NO; 263 | COPY_PHASE_STRIP = YES; 264 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 265 | GCC_PREFIX_HEADER = VDFramework_Prefix.pch; 266 | INFOPLIST_FILE = "VDFramework-Info.plist"; 267 | PRODUCT_NAME = VDFramework; 268 | VALIDATE_PRODUCT = YES; 269 | }; 270 | name = Release; 271 | }; 272 | C01FCF4F08A954540054247B /* Debug */ = { 273 | isa = XCBuildConfiguration; 274 | buildSettings = { 275 | ARCHS = "$(ARCHS_STANDARD_32_BIT)"; 276 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 277 | GCC_C_LANGUAGE_STANDARD = c99; 278 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 279 | GCC_WARN_UNUSED_VARIABLE = YES; 280 | PREBINDING = NO; 281 | SDKROOT = iphoneos; 282 | }; 283 | name = Debug; 284 | }; 285 | C01FCF5008A954540054247B /* Release */ = { 286 | isa = XCBuildConfiguration; 287 | buildSettings = { 288 | ARCHS = "$(ARCHS_STANDARD_32_BIT)"; 289 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 290 | GCC_C_LANGUAGE_STANDARD = c99; 291 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 292 | GCC_WARN_UNUSED_VARIABLE = YES; 293 | OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; 294 | PREBINDING = NO; 295 | SDKROOT = iphoneos; 296 | }; 297 | name = Release; 298 | }; 299 | /* End XCBuildConfiguration section */ 300 | 301 | /* Begin XCConfigurationList section */ 302 | 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "VDFramework" */ = { 303 | isa = XCConfigurationList; 304 | buildConfigurations = ( 305 | 1D6058940D05DD3E006BFB54 /* Debug */, 306 | 1D6058950D05DD3E006BFB54 /* Release */, 307 | ); 308 | defaultConfigurationIsVisible = 0; 309 | defaultConfigurationName = Release; 310 | }; 311 | C01FCF4E08A954540054247B /* Build configuration list for PBXProject "VDFramework" */ = { 312 | isa = XCConfigurationList; 313 | buildConfigurations = ( 314 | C01FCF4F08A954540054247B /* Debug */, 315 | C01FCF5008A954540054247B /* Release */, 316 | ); 317 | defaultConfigurationIsVisible = 0; 318 | defaultConfigurationName = Release; 319 | }; 320 | /* End XCConfigurationList section */ 321 | }; 322 | rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; 323 | } 324 | -------------------------------------------------------------------------------- /VDFramework.xcodeproj/vincentdemay.pbxuser: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | 1D3623240D0F684500981E51 /* VDFrameworkAppDelegate.h */ = { 4 | uiCtxt = { 5 | sepNavIntBoundsRect = "{{0, 0}, {889, 390}}"; 6 | sepNavSelRange = "{600, 0}"; 7 | sepNavVisRange = "{0, 959}"; 8 | }; 9 | }; 10 | 1D3623250D0F684500981E51 /* VDFrameworkAppDelegate.m */ = { 11 | uiCtxt = { 12 | sepNavIntBoundsRect = "{{0, 0}, {889, 1703}}"; 13 | sepNavSelRange = "{600, 0}"; 14 | sepNavVisRange = "{0, 781}"; 15 | }; 16 | }; 17 | 1D6058900D05DD3D006BFB54 /* VDFramework */ = { 18 | activeExec = 0; 19 | executables = ( 20 | 2ED78A8C138556D500193585 /* VDFramework */, 21 | ); 22 | }; 23 | 28216C950DB411BC00E5133A /* FirstViewController.h */ = { 24 | uiCtxt = { 25 | sepNavIntBoundsRect = "{{0, 0}, {889, 364}}"; 26 | sepNavSelRange = "{600, 0}"; 27 | sepNavVisRange = "{0, 689}"; 28 | }; 29 | }; 30 | 28216C960DB411BC00E5133A /* FirstViewController.m */ = { 31 | uiCtxt = { 32 | sepNavIntBoundsRect = "{{0, 0}, {889, 962}}"; 33 | sepNavSelRange = "{600, 0}"; 34 | sepNavVisRange = "{0, 942}"; 35 | }; 36 | }; 37 | 28A0AB4B0D9B1048005BE974 /* VDFramework_Prefix.pch */ = { 38 | uiCtxt = { 39 | sepNavIntBoundsRect = "{{0, 0}, {889, 364}}"; 40 | sepNavSelRange = "{0, 0}"; 41 | sepNavVisRange = "{0, 191}"; 42 | }; 43 | }; 44 | 29B97313FDCFA39411CA2CEA /* Project object */ = { 45 | activeBuildConfigurationName = Debug; 46 | activeExecutable = 2ED78A8C138556D500193585 /* VDFramework */; 47 | activeTarget = 1D6058900D05DD3D006BFB54 /* VDFramework */; 48 | addToTargets = ( 49 | 1D6058900D05DD3D006BFB54 /* VDFramework */, 50 | ); 51 | breakpoints = ( 52 | ); 53 | codeSenseManager = 2ED78A93138556DE00193585 /* Code sense */; 54 | executables = ( 55 | 2ED78A8C138556D500193585 /* VDFramework */, 56 | ); 57 | perUserDictionary = { 58 | PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { 59 | PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; 60 | PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; 61 | PBXFileTableDataSourceColumnWidthsKey = ( 62 | 20, 63 | 711, 64 | 20, 65 | 48.16259765625, 66 | 43, 67 | 43, 68 | 20, 69 | ); 70 | PBXFileTableDataSourceColumnsKey = ( 71 | PBXFileDataSource_FiletypeID, 72 | PBXFileDataSource_Filename_ColumnID, 73 | PBXFileDataSource_Built_ColumnID, 74 | PBXFileDataSource_ObjectSize_ColumnID, 75 | PBXFileDataSource_Errors_ColumnID, 76 | PBXFileDataSource_Warnings_ColumnID, 77 | PBXFileDataSource_Target_ColumnID, 78 | ); 79 | }; 80 | PBXPerProjectTemplateStateSaveDate = 327505621; 81 | PBXWorkspaceStateSaveDate = 327505621; 82 | }; 83 | perUserProjectItems = { 84 | 2ED78B17138560B800193585 /* PBXTextBookmark */ = 2ED78B17138560B800193585 /* PBXTextBookmark */; 85 | 2ED78B18138560B800193585 /* PBXTextBookmark */ = 2ED78B18138560B800193585 /* PBXTextBookmark */; 86 | 2ED78B19138560B800193585 /* PBXTextBookmark */ = 2ED78B19138560B800193585 /* PBXTextBookmark */; 87 | 2ED78B1A138560B800193585 /* PBXTextBookmark */ = 2ED78B1A138560B800193585 /* PBXTextBookmark */; 88 | 2ED78B1B138560B800193585 /* PBXTextBookmark */ = 2ED78B1B138560B800193585 /* PBXTextBookmark */; 89 | 2ED78B2E1385689B00193585 /* PBXTextBookmark */ = 2ED78B2E1385689B00193585 /* PBXTextBookmark */; 90 | 2ED78B3413857AC800193585 /* PlistBookmark */ = 2ED78B3413857AC800193585 /* PlistBookmark */; 91 | 2ED78B3513857AC800193585 /* PBXBookmark */ = 2ED78B3513857AC800193585 /* PBXBookmark */; 92 | 2ED78B3613857AC800193585 /* PBXTextBookmark */ = 2ED78B3613857AC800193585 /* PBXTextBookmark */; 93 | }; 94 | sourceControlManager = 2ED78A92138556DE00193585 /* Source Control */; 95 | userBuildSettings = { 96 | }; 97 | }; 98 | 29B97316FDCFA39411CA2CEA /* main.m */ = { 99 | uiCtxt = { 100 | sepNavIntBoundsRect = "{{0, 0}, {889, 364}}"; 101 | sepNavSelRange = "{600, 0}"; 102 | sepNavVisRange = "{0, 827}"; 103 | }; 104 | }; 105 | 2ED78A8C138556D500193585 /* VDFramework */ = { 106 | isa = PBXExecutable; 107 | activeArgIndices = ( 108 | ); 109 | argumentStrings = ( 110 | ); 111 | autoAttachOnCrash = 1; 112 | breakpointsEnabled = 1; 113 | configStateDict = { 114 | }; 115 | customDataFormattersEnabled = 1; 116 | dataTipCustomDataFormattersEnabled = 1; 117 | dataTipShowTypeColumn = 1; 118 | dataTipSortType = 0; 119 | debuggerPlugin = GDBDebugging; 120 | disassemblyDisplayState = 0; 121 | dylibVariantSuffix = ""; 122 | enableDebugStr = 1; 123 | environmentEntries = ( 124 | ); 125 | executableSystemSymbolLevel = 0; 126 | executableUserSymbolLevel = 0; 127 | libgmallocEnabled = 0; 128 | name = VDFramework; 129 | savedGlobals = { 130 | }; 131 | showTypeColumn = 0; 132 | sourceDirectories = ( 133 | ); 134 | startupPath = "<>"; 135 | variableFormatDictionary = { 136 | }; 137 | }; 138 | 2ED78A92138556DE00193585 /* Source Control */ = { 139 | isa = PBXSourceControlManager; 140 | fallbackIsa = XCSourceControlManager; 141 | isSCMEnabled = 0; 142 | scmConfiguration = { 143 | repositoryNamesForRoots = { 144 | "" = ""; 145 | }; 146 | }; 147 | }; 148 | 2ED78A93138556DE00193585 /* Code sense */ = { 149 | isa = PBXCodeSenseManager; 150 | indexTemplatePath = ""; 151 | }; 152 | 2ED78AA21385573000193585 /* VDTabBarController.h */ = { 153 | uiCtxt = { 154 | sepNavIntBoundsRect = "{{0, 0}, {889, 429}}"; 155 | sepNavSelRange = "{600, 0}"; 156 | sepNavVisRange = "{0, 810}"; 157 | }; 158 | }; 159 | 2ED78AA31385573000193585 /* VDTabBarController.m */ = { 160 | uiCtxt = { 161 | sepNavIntBoundsRect = "{{0, 0}, {677, 2327}}"; 162 | sepNavSelRange = "{1968, 0}"; 163 | sepNavVisRange = "{1380, 272}"; 164 | }; 165 | }; 166 | 2ED78AA61385574900193585 /* VDButton.h */ = { 167 | uiCtxt = { 168 | sepNavIntBoundsRect = "{{0, 0}, {633, 494}}"; 169 | sepNavSelRange = "{685, 0}"; 170 | sepNavVisRange = "{0, 563}"; 171 | }; 172 | }; 173 | 2ED78AA71385574900193585 /* VDButton.m */ = { 174 | uiCtxt = { 175 | sepNavIntBoundsRect = "{{0, 0}, {889, 2392}}"; 176 | sepNavSelRange = "{1749, 0}"; 177 | sepNavVisRange = "{1151, 825}"; 178 | }; 179 | }; 180 | 2ED78B17138560B800193585 /* PBXTextBookmark */ = { 181 | isa = PBXTextBookmark; 182 | fRef = 28216C950DB411BC00E5133A /* FirstViewController.h */; 183 | name = "FirstViewController.h: 16"; 184 | rLen = 0; 185 | rLoc = 600; 186 | rType = 0; 187 | vrLen = 689; 188 | vrLoc = 0; 189 | }; 190 | 2ED78B18138560B800193585 /* PBXTextBookmark */ = { 191 | isa = PBXTextBookmark; 192 | fRef = 28216C960DB411BC00E5133A /* FirstViewController.m */; 193 | name = "FirstViewController.m: 16"; 194 | rLen = 0; 195 | rLoc = 600; 196 | rType = 0; 197 | vrLen = 942; 198 | vrLoc = 0; 199 | }; 200 | 2ED78B19138560B800193585 /* PBXTextBookmark */ = { 201 | isa = PBXTextBookmark; 202 | fRef = 1D3623240D0F684500981E51 /* VDFrameworkAppDelegate.h */; 203 | name = "VDFrameworkAppDelegate.h: 16"; 204 | rLen = 0; 205 | rLoc = 600; 206 | rType = 0; 207 | vrLen = 959; 208 | vrLoc = 0; 209 | }; 210 | 2ED78B1A138560B800193585 /* PBXTextBookmark */ = { 211 | isa = PBXTextBookmark; 212 | fRef = 1D3623250D0F684500981E51 /* VDFrameworkAppDelegate.m */; 213 | name = "VDFrameworkAppDelegate.m: 16"; 214 | rLen = 0; 215 | rLoc = 600; 216 | rType = 0; 217 | vrLen = 781; 218 | vrLoc = 0; 219 | }; 220 | 2ED78B1B138560B800193585 /* PBXTextBookmark */ = { 221 | isa = PBXTextBookmark; 222 | fRef = 28A0AB4B0D9B1048005BE974 /* VDFramework_Prefix.pch */; 223 | name = "VDFramework_Prefix.pch: 1"; 224 | rLen = 0; 225 | rLoc = 0; 226 | rType = 0; 227 | vrLen = 191; 228 | vrLoc = 0; 229 | }; 230 | 2ED78B2E1385689B00193585 /* PBXTextBookmark */ = { 231 | isa = PBXTextBookmark; 232 | fRef = 29B97316FDCFA39411CA2CEA /* main.m */; 233 | name = "main.m: 16"; 234 | rLen = 0; 235 | rLoc = 600; 236 | rType = 0; 237 | vrLen = 827; 238 | vrLoc = 0; 239 | }; 240 | 2ED78B3413857AC800193585 /* PlistBookmark */ = { 241 | isa = PlistBookmark; 242 | fRef = 8D1107310486CEB800E47090 /* VDFramework-Info.plist */; 243 | fallbackIsa = PBXBookmark; 244 | isK = 0; 245 | kPath = ( 246 | ); 247 | name = "/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDFramework-Info.plist"; 248 | rLen = 0; 249 | rLoc = 9223372036854775807; 250 | }; 251 | 2ED78B3513857AC800193585 /* PBXBookmark */ = { 252 | isa = PBXBookmark; 253 | fRef = 2ED78AA71385574900193585 /* VDButton.m */; 254 | }; 255 | 2ED78B3613857AC800193585 /* PBXTextBookmark */ = { 256 | isa = PBXTextBookmark; 257 | fRef = 2ED78AA71385574900193585 /* VDButton.m */; 258 | name = "VDButton.m: 60"; 259 | rLen = 0; 260 | rLoc = 1749; 261 | rType = 0; 262 | vrLen = 825; 263 | vrLoc = 1151; 264 | }; 265 | 8D1107310486CEB800E47090 /* VDFramework-Info.plist */ = { 266 | uiCtxt = { 267 | sepNavWindowFrame = "{{0, 4}, {1440, 874}}"; 268 | }; 269 | }; 270 | } 271 | -------------------------------------------------------------------------------- /VDFramework_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'VDFramework' target in the 'VDFramework' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /build/Debug-iphonesimulator/VDFramework.app.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleIdentifier 8 | com.apple.xcode.dsym.com.yourcompany.VDFramework 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundlePackageType 12 | dSYM 13 | CFBundleSignature 14 | ???? 15 | CFBundleVersion 16 | 1.0 17 | 18 | 19 | -------------------------------------------------------------------------------- /build/Debug-iphonesimulator/VDFramework.app.dSYM/Contents/Resources/DWARF/VDFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/Debug-iphonesimulator/VDFramework.app.dSYM/Contents/Resources/DWARF/VDFramework -------------------------------------------------------------------------------- /build/Debug-iphonesimulator/VDFramework.app/FirstView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/Debug-iphonesimulator/VDFramework.app/FirstView.nib -------------------------------------------------------------------------------- /build/Debug-iphonesimulator/VDFramework.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/Debug-iphonesimulator/VDFramework.app/Info.plist -------------------------------------------------------------------------------- /build/Debug-iphonesimulator/VDFramework.app/MainWindow.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/Debug-iphonesimulator/VDFramework.app/MainWindow.nib -------------------------------------------------------------------------------- /build/Debug-iphonesimulator/VDFramework.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /build/Debug-iphonesimulator/VDFramework.app/SecondView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/Debug-iphonesimulator/VDFramework.app/SecondView.nib -------------------------------------------------------------------------------- /build/Debug-iphonesimulator/VDFramework.app/ThirdView.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/Debug-iphonesimulator/VDFramework.app/ThirdView.nib -------------------------------------------------------------------------------- /build/Debug-iphonesimulator/VDFramework.app/VDFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/Debug-iphonesimulator/VDFramework.app/VDFramework -------------------------------------------------------------------------------- /build/Debug-iphonesimulator/VDFramework.app/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/Debug-iphonesimulator/VDFramework.app/favorite.png -------------------------------------------------------------------------------- /build/Debug-iphonesimulator/VDFramework.app/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/Debug-iphonesimulator/VDFramework.app/profile.png -------------------------------------------------------------------------------- /build/Debug-iphonesimulator/VDFramework.app/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/Debug-iphonesimulator/VDFramework.app/search.png -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/FirstViewController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/FirstViewController.o -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDFramework.LinkFileList: -------------------------------------------------------------------------------- 1 | /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/main.o 2 | /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDFrameworkAppDelegate.o 3 | /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/FirstViewController.o 4 | /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o 5 | /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o 6 | -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDFrameworkAppDelegate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDFrameworkAppDelegate.o -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/main.o -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-all-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamh@ -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-own-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamh@ -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-project-headers.hmap -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework.dep: -------------------------------------------------------------------------------- 1 | fe78f07e99df8475c072e7b58f6b3165 494eeca0dbab23b4b1247cdc31255a96 ffffffffffffffffffffffffffffffff 51008 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o 2 | fe78f07e99df8e26c072e7b58f6b2c7f 594e54f96479123c165a3069d97435a6 ffffffffffffffffffffffffffffffff 57784 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o 3 | fe78f07e99df8e16c072e7b58f6b3be3 8f84951fc1ed012579170bbe379951b2 ffffffffffffffffffffffffffffffff 37500 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/FirstViewController.o 4 | fe78f07e99df847cc072e7b58f6b2b92 b8421ad45caca92ef5c58ac78a0f85e7 ffffffffffffffffffffffffffffffff 54872 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDFrameworkAppDelegate.o 5 | fe78f07ed40aa718c072e7b58f6b3d13 db29b3e97b64d790046e4dece5eecfa8 ffffffffffffffffffffffffffffffff 6344 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/main.o 6 | 00000000000000000000000000000000 32b30bb661fa4d999d13cafa4eda13d2 ffffffffffffffffffffffffffffffff 102 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app.dSYM 7 | 869086935a57f2855434873ea8cc490c fc90e5015a3135ba536bd15bc8cbb100 ffffffffffffffffffffffffffffffff 408 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app 8 | 029774058dfde90fefb067953f36f4d5 a371e16e4feb7df25f9f1f8780c87937 ffffffffffffffffffffffffffffffff 32664 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/VDFramework 9 | 000000004dd515150000000000001e78 fe78f07e98cbb320c072e7b58f6b2af1 ffffffffffffffffffffffffffffffff 15453392 /var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch.gch 10 | 000000004d42ad020000000000004271 45282565616de62168be3e1f8c4e4f68 ffffffffffffffffffffffffffffffff 1240 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/ThirdView.nib 11 | 00000000000000000000000000000000 780dbc0b5744c01ba68810fe4f569a5a ffffffffffffffffffffffffffffffff 3152 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/profile.png 12 | 00000000000000000000000000000000 5127b08414d527e0e3c640877043101a ffffffffffffffffffffffffffffffff 3171 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/favorite.png 13 | 00000000000000000000000000000000 6279a92c2dcc64465cfea8e47494befc ffffffffffffffffffffffffffffffff 3351 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/search.png 14 | 000000004dd51f5500000000000049d5 ae5a8e2f3b0539d07ec3eeff62aba20c ffffffffffffffffffffffffffffffff 1743 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/FirstView.nib 15 | 000000004dd51f5500000000000049d3 7a1ea35ebb32d69f7c068f8788559ade ffffffffffffffffffffffffffffffff 1742 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/SecondView.nib 16 | 000000004dd520960000000000007123 fd49be4f17d1613f97d058d63a03b4bc ffffffffffffffffffffffffffffffff 2021 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/MainWindow.nib 17 | 00000000000000000000000000000000 95bef8e4c9f58d9fca7b21691a1a5d87 ffffffffffffffffffffffffffffffff 8 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/PkgInfo 18 | 00000000000000000000000000000000 95bef8e4c9f58d9fca7b21691a1a5d87 ffffffffffffffffffffffffffffffff 607 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/Info.plist 19 | ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 0 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController-46D2F8EFE79B754F.o 20 | ffffffffffffffffffffffffffffffff 63b57552ab00f5305aa1676732019d0d ffffffffffffffffffffffffffffffff 0 /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBar.o 21 | -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework.hmap -------------------------------------------------------------------------------- /build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/build-state.dat: -------------------------------------------------------------------------------- 1 | TVDFramework 2 | v7 3 | r0 4 | t327510171.007621 5 | cCheck dependencies 6 | cProcessInfoPlistFile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/Info.plist VDFramework-Info.plist 7 | cCompileXIB /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/MainWindow.xib 8 | cCompileXIB /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/SecondView.xib 9 | cCompileXIB /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/FirstView.xib 10 | cCpResource build/Debug-iphonesimulator/VDFramework.app/search.png search.png 11 | cCpResource build/Debug-iphonesimulator/VDFramework.app/favorite.png favorite.png 12 | cCpResource build/Debug-iphonesimulator/VDFramework.app/profile.png profile.png 13 | cCompileXIB /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/ThirdView.xib 14 | cProcessPCH /var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch.gch VDFramework_Prefix.pch normal i386 objective-c com.apple.compilers.gcc.4_2 15 | cCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/main.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/main.m normal i386 objective-c com.apple.compilers.gcc.4_2 16 | cCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDFrameworkAppDelegate.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/VDFrameworkAppDelegate.m normal i386 objective-c com.apple.compilers.gcc.4_2 17 | cCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/FirstViewController.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/FirstViewController.m normal i386 objective-c com.apple.compilers.gcc.4_2 18 | cCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDTabBarController.m normal i386 objective-c com.apple.compilers.gcc.4_2 19 | cCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDButton.m normal i386 objective-c com.apple.compilers.gcc.4_2 20 | cLd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/VDFramework normal i386 21 | cGenerateDSYMFile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app.dSYM /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/VDFramework 22 | cTouch /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app 23 | 24 | N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk 25 | c000000004CC128950000000000000110 26 | t1287727253 27 | s272 28 | 29 | N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 30 | c000000004CC12246000000000029B310 31 | t1287725638 32 | s2732816 33 | 34 | N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/Foundation.framework/Foundation 35 | c000000004CC1226D000000000029D5D0 36 | t1287725677 37 | s2741712 38 | 39 | N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.h 40 | c000000004CC1225F0000000000001466 41 | t1287725663 42 | s5222 43 | 44 | N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIKit.h 45 | c000000004CC1281F0000000000000AA1 46 | t1287727135 47 | s2721 48 | 49 | N/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk/System/Library/Frameworks/UIKit.framework/UIKit 50 | c000000004CC12883000000000074D7B0 51 | t1287727235 52 | s7657392 53 | 54 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDButton.m 55 | c000000004DD5291300000000000015C2 56 | t1305815315 57 | s5570 58 | i"VDButton.h" 59 | 60 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDTabBarController.m 61 | c000000004DD5291B00000000000011C1 62 | t1305815323 63 | s4545 64 | i"VDTabBarController.h" 65 | i"VDButton.h" 66 | 67 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../VDButton.m 68 | c00000000000000000000000000000000 69 | t2 70 | s0 71 | 72 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../VDTabBarController.h 73 | c000000004DD529170000000000000396 74 | t1305815319 75 | s918 76 | i 77 | i"VDButton.h" 78 | 79 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../VDTabBarController.m 80 | c00000000000000000000000000000000 81 | t2 82 | s0 83 | 84 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/FirstViewController.h 85 | c000000004DD5291F00000000000002B1 86 | t1305815327 87 | s689 88 | i 89 | 90 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/FirstViewController.m 91 | c000000004DD52923000000000000077A 92 | t1305815331 93 | s1914 94 | i"FirstViewController.h" 95 | 96 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/VDButton.h 97 | c000000004DD5290C0000000000000448 98 | t1305815308 99 | s1096 100 | i 101 | 102 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/VDFrameworkAppDelegate.h 103 | c000000004DD5292600000000000003C4 104 | t1305815334 105 | s964 106 | i 107 | i"VDTabBarController.h" 108 | 109 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/VDFrameworkAppDelegate.m 110 | c000000004DD5292B0000000000000F67 111 | t1305815339 112 | s3943 113 | i"VDFrameworkAppDelegate.h" 114 | 115 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/VDTabBarController.h 116 | c000000004DD529170000000000000396 117 | t1305815319 118 | s918 119 | i 120 | i"VDButton.h" 121 | 122 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/FirstView.xib 123 | c000000004DD51F5500000000000049D5 124 | t1305812821 125 | s18901 126 | 127 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/MainWindow.xib 128 | c000000004DD520960000000000007123 129 | t1305813142 130 | s28963 131 | 132 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/SecondView.xib 133 | c000000004DD51F5500000000000049D3 134 | t1305812821 135 | s18899 136 | 137 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/ThirdView.xib 138 | c000000004D42AD020000000000004271 139 | t1296215298 140 | s17009 141 | 142 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDButton.h 143 | c000000004DD5290C0000000000000448 144 | t1305815308 145 | s1096 146 | i 147 | 148 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDButton.m 149 | c000000004DD5291300000000000015C2 150 | t1305815315 151 | s5570 152 | i"VDButton.h" 153 | 154 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDFramework_Prefix.pch 155 | c000000004DD51F5500000000000000BF 156 | t1305812821 157 | s191 158 | i 159 | i 160 | 161 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDTabBar.h 162 | c000000004DD5202F0000000000000147 163 | t1305813039 164 | s327 165 | i 166 | 167 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDTabBar.m 168 | c000000004DD520380000000000000C53 169 | t1305813048 170 | s3155 171 | i"VDTabBarController.h" 172 | i"VDButton.h" 173 | 174 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDTabBarController.h 175 | c000000004DD529170000000000000396 176 | t1305815319 177 | s918 178 | i 179 | i"VDButton.h" 180 | 181 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDTabBarController.m 182 | c000000004DD5291B00000000000011C1 183 | t1305815323 184 | s4545 185 | i"VDTabBarController.h" 186 | i"VDButton.h" 187 | 188 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app 189 | t1305817371 190 | s408 191 | 192 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app.dSYM 193 | t1305817370 194 | s102 195 | 196 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/FirstView.nib 197 | t1305817370 198 | s1743 199 | 200 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/Info.plist 201 | t1305817369 202 | s607 203 | 204 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/MainWindow.nib 205 | t1305817370 206 | s2021 207 | 208 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/PkgInfo 209 | t1305817369 210 | s8 211 | 212 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/SecondView.nib 213 | t1305817370 214 | s1742 215 | 216 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/ThirdView.nib 217 | t1305817370 218 | s1240 219 | 220 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/VDFramework 221 | t1305817370 222 | s32664 223 | 224 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/favorite.png 225 | t1305817370 226 | s3171 227 | 228 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/profile.png 229 | t1305817370 230 | s3152 231 | 232 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/search.png 233 | t1305817370 234 | s3351 235 | 236 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/FirstViewController.o 237 | t1305817370 238 | s37500 239 | 240 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o 241 | t1305817370 242 | s51008 243 | 244 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDFramework.LinkFileList 245 | c000000004DD531190000000000000326 246 | t1305817369 247 | s806 248 | 249 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDFrameworkAppDelegate.o 250 | t1305817370 251 | s54872 252 | 253 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBar.o 254 | t2 255 | s0 256 | 257 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController-46D2F8EFE79B754F.o 258 | t2 259 | s0 260 | 261 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o 262 | t1305817370 263 | s57784 264 | 265 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/main.o 266 | t1305817370 267 | s6344 268 | 269 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/favorite.png 270 | c000000004DD413B70000000000000C63 271 | t1305744311 272 | s3171 273 | 274 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/main.m 275 | c000000004DD52932000000000000033B 276 | t1305815346 277 | s827 278 | i 279 | 280 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/profile.png 281 | c000000004DD413A70000000000000C50 282 | t1305744295 283 | s3152 284 | 285 | N/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/search.png 286 | c000000004DD4E6890000000000000D17 287 | t1305798281 288 | s3351 289 | 290 | N/var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch.gch 291 | t1305813160 292 | s15453392 293 | 294 | NVDFramework-Info.plist 295 | c000000004DD51F55000000000000038D 296 | t1305812821 297 | s909 298 | 299 | CCheck dependencies 300 | r0 301 | lSLF07#2@18"Check dependencies327510169#327510169#0(0"0(0#1#0"32651522506817640#0"0# 302 | 303 | CCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/FirstViewController.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/FirstViewController.m normal i386 objective-c com.apple.compilers.gcc.4_2 304 | s327510170.762254 305 | e327510170.840812 306 | r1 307 | xCompileC 308 | xbuild/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/FirstViewController.o 309 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/FirstViewController.m 310 | xnormal 311 | xi386 312 | xobjective-c 313 | xcom.apple.compilers.gcc.4_2 314 | lSLF07#2@97"Compile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/FirstViewController.m327510170#327510170#0(0"0(0#0#89"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/FirstViewController.m8656386176#2263" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-generated-files.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-own-target-headers.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-all-target-headers.hmap -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-project-headers.hmap -F/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/include -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources/i386 -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources -include /var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch -c /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/FirstViewController.m -o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/FirstViewController.o 0# 315 | 316 | CCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDButton.m normal i386 objective-c com.apple.compilers.gcc.4_2 317 | s327510170.840893 318 | e327510170.939141 319 | r1 320 | xCompileC 321 | xbuild/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o 322 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDButton.m 323 | xnormal 324 | xi386 325 | xobjective-c 326 | xcom.apple.compilers.gcc.4_2 327 | lSLF07#2@97"Compile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDButton.m327510170#327510170#0(0"0(0#0#89"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDButton.m8659259872#2252" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-generated-files.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-own-target-headers.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-all-target-headers.hmap -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-project-headers.hmap -F/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/include -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources/i386 -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources -include /var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch -c /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDButton.m -o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o 0# 328 | 329 | CCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../VDButton.m normal i386 objective-c com.apple.compilers.gcc.4_2 330 | r0 331 | 332 | CCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDButton.m normal i386 objective-c com.apple.compilers.gcc.4_2 333 | s327508152.092517 334 | e327508152.209050 335 | r1 336 | xCompileC 337 | xbuild/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o 338 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDButton.m 339 | xnormal 340 | xi386 341 | xobjective-c 342 | xcom.apple.compilers.gcc.4_2 343 | lSLF07#2@78"Compile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDButton.m327508152#327508152#0(0"0(0#0#70"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDButton.m8647389120#2233" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-generated-files.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-own-target-headers.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-all-target-headers.hmap -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-project-headers.hmap -F/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/include -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources/i386 -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources -include /var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch -c /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDButton.m -o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDButton.o 0# 344 | 345 | CCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDFrameworkAppDelegate.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/VDFrameworkAppDelegate.m normal i386 objective-c com.apple.compilers.gcc.4_2 346 | s327510170.713244 347 | e327510170.801274 348 | r1 349 | xCompileC 350 | xbuild/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDFrameworkAppDelegate.o 351 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/VDFrameworkAppDelegate.m 352 | xnormal 353 | xi386 354 | xobjective-c 355 | xcom.apple.compilers.gcc.4_2 356 | lSLF07#2@100"Compile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/VDFrameworkAppDelegate.m327510170#327510170#0(0"0(0#0#92"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/VDFrameworkAppDelegate.m8621063168#2269" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-generated-files.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-own-target-headers.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-all-target-headers.hmap -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-project-headers.hmap -F/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/include -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources/i386 -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources -include /var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch -c /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/VDFrameworkAppDelegate.m -o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDFrameworkAppDelegate.o 0# 357 | 358 | CCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBar.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDTabBar.m normal i386 objective-c com.apple.compilers.gcc.4_2 359 | r0 360 | 361 | CCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController-46D2F8EFE79B754F.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../VDTabBarController.m normal i386 objective-c com.apple.compilers.gcc.4_2 362 | r0 363 | 364 | CCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDTabBarController.m normal i386 objective-c com.apple.compilers.gcc.4_2 365 | s327510170.801364 366 | e327510170.938573 367 | r1 368 | xCompileC 369 | xbuild/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o 370 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDTabBarController.m 371 | xnormal 372 | xi386 373 | xobjective-c 374 | xcom.apple.compilers.gcc.4_2 375 | lSLF07#2@107"Compile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDTabBarController.m327510170#327510170#0(0"0(0#0#99"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDTabBarController.m8654408736#2272" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-generated-files.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-own-target-headers.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-all-target-headers.hmap -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-project-headers.hmap -F/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/include -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources/i386 -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources -include /var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch -c /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../Classes/VDTabBarController.m -o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o 0# 376 | 377 | CCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/Classes/../VDTabBarController.m normal i386 objective-c com.apple.compilers.gcc.4_2 378 | r0 379 | 380 | CCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDTabBarController.m normal i386 objective-c com.apple.compilers.gcc.4_2 381 | s327508152.052886 382 | e327508152.170720 383 | r1 384 | xCompileC 385 | xbuild/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o 386 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDTabBarController.m 387 | xnormal 388 | xi386 389 | xobjective-c 390 | xcom.apple.compilers.gcc.4_2 391 | lSLF07#2@88"Compile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDTabBarController.m327508152#327508152#0(0"0(0#0#80"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDTabBarController.m8648596384#2253" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-generated-files.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-own-target-headers.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-all-target-headers.hmap -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-project-headers.hmap -F/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/include -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources/i386 -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources -include /var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch -c /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDTabBarController.m -o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDTabBarController.o 0# 392 | 393 | CCompileC build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/main.o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/main.m normal i386 objective-c com.apple.compilers.gcc.4_2 394 | s327510170.712225 395 | e327510170.762128 396 | r1 397 | xCompileC 398 | xbuild/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/main.o 399 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/main.m 400 | xnormal 401 | xi386 402 | xobjective-c 403 | xcom.apple.compilers.gcc.4_2 404 | lSLF07#2@74"Compile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/main.m327510170#327510170#0(0"0(0#0#66"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/main.m8638813600#2225" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-generated-files.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-own-target-headers.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-all-target-headers.hmap -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-project-headers.hmap -F/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/include -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources/i386 -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources -include /var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch -c /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/main.m -o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/main.o 0# 405 | 406 | CCompileXIB /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/FirstView.xib 407 | s327510170.125658 408 | e327510170.652444 409 | r1 410 | xCompileXIB 411 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/FirstView.xib 412 | lSLF07#2@24"CompileXIB FirstView.xib327510170#327510170#0(0"0(0#0#73"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/FirstView.xib8657338848#635" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv IBC_MINIMUM_COMPATIBILITY_VERSION 4.2 setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/FirstView.nib /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/FirstView.xib --sdk /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk 0# 413 | 414 | CCompileXIB /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/MainWindow.xib 415 | s327510169.473462 416 | e327510170.125578 417 | r1 418 | xCompileXIB 419 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/MainWindow.xib 420 | lSLF07#2@25"CompileXIB MainWindow.xib327510169#327510170#0(0"0(0#0#74"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/MainWindow.xib8657250016#637" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv IBC_MINIMUM_COMPATIBILITY_VERSION 4.2 setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/MainWindow.nib /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/MainWindow.xib --sdk /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk 0# 421 | 422 | CCompileXIB /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/SecondView.xib 423 | s327510169.474129 424 | e327510170.264474 425 | r1 426 | xCompileXIB 427 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/SecondView.xib 428 | lSLF07#2@25"CompileXIB SecondView.xib327510169#327510170#0(0"0(0#0#74"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/SecondView.xib8655939776#637" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv IBC_MINIMUM_COMPATIBILITY_VERSION 4.2 setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/SecondView.nib /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/SecondView.xib --sdk /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk 0# 429 | 430 | CCompileXIB /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/ThirdView.xib 431 | s327510170.269938 432 | e327510170.712013 433 | r1 434 | xCompileXIB 435 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/ThirdView.xib 436 | lSLF07#2@24"CompileXIB ThirdView.xib327510170#327510170#0(0"0(0#0#73"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/ThirdView.xib8655090752#635" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv IBC_MINIMUM_COMPATIBILITY_VERSION 4.2 setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text --compile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/ThirdView.nib /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/ThirdView.xib --sdk /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk 0# 437 | 438 | CCpResource build/Debug-iphonesimulator/VDFramework.app/favorite.png favorite.png 439 | s327510170.266278 440 | e327510170.271910 441 | r1 442 | xCpResource 443 | xbuild/Debug-iphonesimulator/VDFramework.app/favorite.png 444 | xfavorite.png 445 | lSLF07#2@17"Copy favorite.png327510170#327510170#0(0"0(0#0#72"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/favorite.png8610724544#537" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/favorite.png /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app 0# 446 | 447 | CCpResource build/Debug-iphonesimulator/VDFramework.app/profile.png profile.png 448 | s327510170.267841 449 | e327510170.274827 450 | r1 451 | xCpResource 452 | xbuild/Debug-iphonesimulator/VDFramework.app/profile.png 453 | xprofile.png 454 | lSLF07#2@16"Copy profile.png327510170#327510170#0(0"0(0#0#71"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/profile.png8656554400#536" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/profile.png /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app 0# 455 | 456 | CCpResource build/Debug-iphonesimulator/VDFramework.app/search.png search.png 457 | s327510170.264548 458 | e327510170.271612 459 | r1 460 | xCpResource 461 | xbuild/Debug-iphonesimulator/VDFramework.app/search.png 462 | xsearch.png 463 | lSLF07#2@15"Copy search.png327510170#327510170#0(0"0(0#0#70"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/search.png8627777504#535" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -resolve-src-symlinks /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/search.png /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app 0# 464 | 465 | CGenerateDSYMFile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app.dSYM /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/VDFramework 466 | s327510170.985230 467 | e327510171.005052 468 | r1 469 | xGenerateDSYMFile 470 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app.dSYM 471 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/VDFramework 472 | lSLF07#2@121"GenerateDSYMFile build/Debug-iphonesimulator/VDFramework.app.dSYM build/Debug-iphonesimulator/VDFramework.app/VDFramework327510170#327510171#0(0"0(0#0#115"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/VDFramework8638496928#458" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/usr/bin/dsymutil /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/VDFramework -o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app.dSYM 0# 473 | 474 | CLd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/VDFramework normal i386 475 | s327510170.939200 476 | e327510170.985009 477 | r1 478 | xLd 479 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/VDFramework 480 | xnormal 481 | xi386 482 | lSLF07#2@120"Link /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/VDFramework327510170#327510170#0(0"0(0#0#0"8649507648#1025" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv MACOSX_DEPLOYMENT_TARGET 10.6 setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -arch i386 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -L/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator -F/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator -filelist /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/Objects-normal/i386/VDFramework.LinkFileList -mmacosx-version-min=10.6 -Xlinker -objc_abi_version -Xlinker 2 -framework Foundation -framework UIKit -framework CoreGraphics -o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/VDFramework 0# 483 | 484 | CProcessInfoPlistFile /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/Info.plist VDFramework-Info.plist 485 | s327510169.450984 486 | e327510169.473383 487 | r1 488 | xProcessInfoPlistFile 489 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/Info.plist 490 | xVDFramework-Info.plist 491 | lSLF07#2@30"Process VDFramework-Info.plist327510169#327510169#0(0"0(0#0#82"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDFramework-Info.plist32088624093986912#554" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" builtin-infoPlistUtility VDFramework-Info.plist -genpkginfo /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/PkgInfo -expandbuildsettings -format binary -platform iphonesimulator -o /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app/Info.plist 0# 492 | 493 | CProcessPCH /var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch.gch VDFramework_Prefix.pch normal i386 objective-c com.apple.compilers.gcc.4_2 494 | s327505958.553190 495 | e327505960.419936 496 | r1 497 | xProcessPCH 498 | x/var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch.gch 499 | xVDFramework_Prefix.pch 500 | xnormal 501 | xi386 502 | xobjective-c 503 | xcom.apple.compilers.gcc.4_2 504 | lSLF07#2@33"Precompile VDFramework_Prefix.pch327505958#327505960#0(0"0(0#0#82"/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDFramework_Prefix.pch8648945568#2092" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv LANG en_US.US-ASCII setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -x objective-c-header -arch i386 -fmessage-length=0 -pipe -std=c99 -Wno-trigraphs -fpascal-strings -fasm-blocks -O0 -Wreturn-type -Wunused-variable -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2.sdk -fexceptions -fvisibility=hidden -mmacosx-version-min=10.6 -gdwarf-2 -fobjc-abi-version=2 -fobjc-legacy-dispatch -D__IPHONE_OS_VERSION_MIN_REQUIRED=40200 -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-generated-files.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-own-target-headers.hmap -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-all-target-headers.hmap -iquote /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/VDFramework-project-headers.hmap -F/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/include -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources/i386 -I/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/VDFramework.build/Debug-iphonesimulator/VDFramework.build/DerivedSources -c /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/VDFramework_Prefix.pch -o /var/folders/cr/cr92+O6HEdqpyDYUJctW6E+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/VDFramework_Prefix-biujfviuqcvocpdaixqezlbhsgnc/VDFramework_Prefix.pch.gch 0# 505 | 506 | CTouch /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app 507 | s327510171.005130 508 | e327510171.007587 509 | r1 510 | xTouch 511 | x/Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app 512 | lSLF07#2@109"Touch /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app327510171#327510171#0(0"0(0#0#0"8626063488#324" cd /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /usr/bin/touch -c /Users/vincentdemay/dev/demay-fr.net/dev/iphone/VDFramework/build/Debug-iphonesimulator/VDFramework.app 0# 513 | 514 | -------------------------------------------------------------------------------- /build/VDFramework.build/VDFramework.pbxindex/categories.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/VDFramework.pbxindex/categories.pbxbtree -------------------------------------------------------------------------------- /build/VDFramework.build/VDFramework.pbxindex/cdecls.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/VDFramework.pbxindex/cdecls.pbxbtree -------------------------------------------------------------------------------- /build/VDFramework.build/VDFramework.pbxindex/decls.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/VDFramework.pbxindex/decls.pbxbtree -------------------------------------------------------------------------------- /build/VDFramework.build/VDFramework.pbxindex/files.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/VDFramework.pbxindex/files.pbxbtree -------------------------------------------------------------------------------- /build/VDFramework.build/VDFramework.pbxindex/imports.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/VDFramework.pbxindex/imports.pbxbtree -------------------------------------------------------------------------------- /build/VDFramework.build/VDFramework.pbxindex/pbxindex.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/VDFramework.pbxindex/pbxindex.header -------------------------------------------------------------------------------- /build/VDFramework.build/VDFramework.pbxindex/protocols.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/VDFramework.pbxindex/protocols.pbxbtree -------------------------------------------------------------------------------- /build/VDFramework.build/VDFramework.pbxindex/refs.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/VDFramework.pbxindex/refs.pbxbtree -------------------------------------------------------------------------------- /build/VDFramework.build/VDFramework.pbxindex/strings.pbxstrings/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/VDFramework.pbxindex/strings.pbxstrings/control -------------------------------------------------------------------------------- /build/VDFramework.build/VDFramework.pbxindex/subclasses.pbxbtree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/VDFramework.pbxindex/subclasses.pbxbtree -------------------------------------------------------------------------------- /build/VDFramework.build/VDFramework.pbxindex/symbols0.pbxsymbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/build/VDFramework.build/VDFramework.pbxindex/symbols0.pbxsymbols -------------------------------------------------------------------------------- /favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/favorite.png -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2010-2011 Vincent Demay 3 | // 4 | // Licensed under the Apache License, Version 2.0 (the "License"); 5 | // you may not use this file except in compliance with the License. 6 | // You may obtain a copy of the License at 7 | // 8 | // http://www.apache.org/licenses/LICENSE-2.0 9 | // 10 | // Unless required by applicable law or agreed to in writing, software 11 | // distributed under the License is distributed on an "AS IS" BASIS, 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | // See the License for the specific language governing permissions and 14 | // limitations under the License. 15 | // 16 | 17 | 18 | #import 19 | 20 | int main(int argc, char *argv[]) { 21 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; 22 | int retVal = UIApplicationMain(argc, argv, nil, nil); 23 | [pool release]; 24 | return retVal; 25 | } 26 | 27 | -------------------------------------------------------------------------------- /profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/profile.png -------------------------------------------------------------------------------- /search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vdemay/VDFramework/7c5efa1ec5cb12d477607b0f5795679927fb5e85/search.png --------------------------------------------------------------------------------