Added some documentation
This commit is contained in:
parent
7949d936a6
commit
a4b90244db
22 changed files with 691 additions and 247 deletions
|
@ -7,6 +7,7 @@
|
||||||
// Licence: MIT-Licence
|
// Licence: MIT-Licence
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
||||||
#import <UIKit/UIKit.h>
|
#import <UIKit/UIKit.h>
|
||||||
#import "JPImagePickerControllerDelegate.h"
|
#import "JPImagePickerControllerDelegate.h"
|
||||||
#import "JPImagePickerControllerDataSource.h"
|
#import "JPImagePickerControllerDataSource.h"
|
||||||
|
@ -16,6 +17,14 @@
|
||||||
@protocol JPImagePickerControllerDataSource;
|
@protocol JPImagePickerControllerDataSource;
|
||||||
@class JPImagePickerOverviewController;
|
@class JPImagePickerOverviewController;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@class JPImagePickerController
|
||||||
|
@abstract A image picker view.
|
||||||
|
@discussion A class which represents a image picker controller like apples UIImagePickerController
|
||||||
|
but lets you use a external dataSource for the images.
|
||||||
|
@updated 2009-11-11
|
||||||
|
*/
|
||||||
|
|
||||||
@interface JPImagePickerController : UIViewController {
|
@interface JPImagePickerController : UIViewController {
|
||||||
IBOutlet UINavigationController *modalNavigationController;
|
IBOutlet UINavigationController *modalNavigationController;
|
||||||
JPImagePickerOverviewController *overviewController;
|
JPImagePickerOverviewController *overviewController;
|
||||||
|
@ -25,13 +34,62 @@
|
||||||
NSString *imagePickerTitle;
|
NSString *imagePickerTitle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@property modalNavigationController
|
||||||
|
@abstract The additional navigation controller.
|
||||||
|
@discussion We need it to be able to view a navigation when the user
|
||||||
|
picks a image.
|
||||||
|
*/
|
||||||
@property (nonatomic, retain) IBOutlet UINavigationController *modalNavigationController;
|
@property (nonatomic, retain) IBOutlet UINavigationController *modalNavigationController;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@property overviewController
|
||||||
|
@abstract Controller for the scrollView.
|
||||||
|
@discussion This controller holds the scrollView with all the buttons which
|
||||||
|
represent the images.
|
||||||
|
*/
|
||||||
@property (nonatomic, retain) JPImagePickerOverviewController *overviewController;
|
@property (nonatomic, retain) JPImagePickerOverviewController *overviewController;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@property overviewController
|
||||||
|
@abstract Original StatusBarStyle at the beginning.
|
||||||
|
@discussion This property saves the UIStatusBarStyle at the beginning, so that
|
||||||
|
we'll be able to change it back when we dismiss the image picker.
|
||||||
|
*/
|
||||||
@property (nonatomic, readonly) UIStatusBarStyle statusBarStyle;
|
@property (nonatomic, readonly) UIStatusBarStyle statusBarStyle;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@property delegate
|
||||||
|
@abstract The image picker's delegate object.
|
||||||
|
@discussion The delegate receives notifications when the user picks an image,
|
||||||
|
or exits the picker interface. The delegate also decides when to dismiss
|
||||||
|
the picker interface, so you must provide a delegate to use a picker.
|
||||||
|
If this property is nil, the picker is dismissed immediately if you try
|
||||||
|
to show it.
|
||||||
|
*/
|
||||||
@property (nonatomic, retain) id<JPImagePickerControllerDelegate> delegate;
|
@property (nonatomic, retain) id<JPImagePickerControllerDelegate> delegate;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@property dataSource
|
||||||
|
@abstract The data source for the picker view.
|
||||||
|
@discussion The data source must adopt the JPImagePickerControllerDataSource protocol
|
||||||
|
and implement the required methods to return the number of components and the
|
||||||
|
number of rows in each component.
|
||||||
|
*/
|
||||||
@property (nonatomic, retain) id<JPImagePickerControllerDataSource> dataSource;
|
@property (nonatomic, retain) id<JPImagePickerControllerDataSource> dataSource;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@property imagePickerTitle
|
||||||
|
@abstract The image picker title.
|
||||||
|
@discussion You can set the title for the image overview here.
|
||||||
|
*/
|
||||||
@property (nonatomic, retain) NSString *imagePickerTitle;
|
@property (nonatomic, retain) NSString *imagePickerTitle;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@method cancelPicking:
|
||||||
|
@param sender The button which sends the action.
|
||||||
|
*/
|
||||||
- (void)cancelPicking:(id)sender;
|
- (void)cancelPicking:(id)sender;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
||||||
|
|
|
@ -51,6 +51,9 @@
|
||||||
|
|
||||||
-(void)viewWillAppear:(BOOL)animated {
|
-(void)viewWillAppear:(BOOL)animated {
|
||||||
[super viewWillAppear:animated];
|
[super viewWillAppear:animated];
|
||||||
|
if (delegate == nil) {
|
||||||
|
[self.navigationController dismissModalViewControllerAnimated:YES];
|
||||||
|
}
|
||||||
[modalNavigationController viewWillAppear:animated];
|
[modalNavigationController viewWillAppear:animated];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,10 +12,44 @@
|
||||||
|
|
||||||
@class JPImagePickerController;
|
@class JPImagePickerController;
|
||||||
|
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@protocol JPImagePickerControllerDataSource
|
||||||
|
@abstract The data source protocol for JPImagePickerController
|
||||||
|
@discussion The JPImagePickerController asks this data source for all
|
||||||
|
data which it wants to display.
|
||||||
|
*/
|
||||||
|
|
||||||
@protocol JPImagePickerControllerDataSource
|
@protocol JPImagePickerControllerDataSource
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@method numberOfImagesInImagePicker:
|
||||||
|
@abstract Should return the number of images.
|
||||||
|
@discussion This method should return the number of images which the
|
||||||
|
picker should display.
|
||||||
|
@param picker The picker which called this method.
|
||||||
|
*/
|
||||||
- (NSInteger)numberOfImagesInImagePicker:(JPImagePickerController *)picker;
|
- (NSInteger)numberOfImagesInImagePicker:(JPImagePickerController *)picker;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@method imagePicker:thumbnailForImageNumber:
|
||||||
|
@abstract Asks the data source for a thumbnail to insert in a particular location
|
||||||
|
the image picker.
|
||||||
|
@discussion This method should return a UIImage thumbnail for a image at the
|
||||||
|
image number position.
|
||||||
|
@param picker A picker-object requesting the thumbnail.
|
||||||
|
@param imageNumber A image number locating the image in the picker.
|
||||||
|
*/
|
||||||
- (UIImage *)imagePicker:(JPImagePickerController *)picker thumbnailForImageNumber:(NSInteger)imageNumber;
|
- (UIImage *)imagePicker:(JPImagePickerController *)picker thumbnailForImageNumber:(NSInteger)imageNumber;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@method imagePicker:imageForImageNumber:
|
||||||
|
@abstract Asks the data source for a image to show in a preview.
|
||||||
|
@discussion This method should return a UIImage image for the preview at
|
||||||
|
the image number position.
|
||||||
|
@param picker A picker-object requesting the image.
|
||||||
|
@param imageNumber A image number locating the image in the picker.
|
||||||
|
*/
|
||||||
- (UIImage *)imagePicker:(JPImagePickerController *)picker imageForImageNumber:(NSInteger)imageNumber;
|
- (UIImage *)imagePicker:(JPImagePickerController *)picker imageForImageNumber:(NSInteger)imageNumber;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
|
@ -12,9 +12,33 @@
|
||||||
|
|
||||||
@class JPImagePickerController;
|
@class JPImagePickerController;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@protocol JPImagePickerControllerDelegate
|
||||||
|
@abstract Delegate protocol for the JPImagePickerController
|
||||||
|
@discussion You have to implement this delegate in order to
|
||||||
|
use the JPImagePickerController. This delegate is responsible
|
||||||
|
for dismissing the picker on cancel or finished picking.
|
||||||
|
*/
|
||||||
|
|
||||||
@protocol JPImagePickerControllerDelegate
|
@protocol JPImagePickerControllerDelegate
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@method imagePickerDidCancel:
|
||||||
|
@abstract Called when picker did cancel
|
||||||
|
@discussion This method is called when the user canceled picking.
|
||||||
|
The delegate is responsible to dismiss the picker here.
|
||||||
|
@param picker The picker which called this method.
|
||||||
|
*/
|
||||||
- (void)imagePickerDidCancel:(JPImagePickerController *)picker;
|
- (void)imagePickerDidCancel:(JPImagePickerController *)picker;
|
||||||
|
|
||||||
|
/*!
|
||||||
|
@method imagePicker:didFinishPickingWithImageNumber:
|
||||||
|
@abstract Called when the user picked a image.
|
||||||
|
@discussion This method is called when the user die finish picking.
|
||||||
|
The delegate is responsible to dismiss the picker here.
|
||||||
|
@param picker The picker which called this method.
|
||||||
|
@param imageNumber The number which image the user picked.
|
||||||
|
*/
|
||||||
- (void)imagePicker:(JPImagePickerController *)picker didFinishPickingWithImageNumber:(NSInteger)imageNumber;
|
- (void)imagePicker:(JPImagePickerController *)picker didFinishPickingWithImageNumber:(NSInteger)imageNumber;
|
||||||
|
|
||||||
@end
|
@end
|
||||||
|
|
|
@ -128,7 +128,7 @@
|
||||||
|
|
||||||
imagePickerController.delegate = self;
|
imagePickerController.delegate = self;
|
||||||
imagePickerController.dataSource = self;
|
imagePickerController.dataSource = self;
|
||||||
[imagePickerController setImagePickerTitle:@"Emoticards"];
|
imagePickerController.imagePickerTitle = @"ImagePicker";
|
||||||
|
|
||||||
[self.navigationController presentModalViewController:imagePickerController animated:YES];
|
[self.navigationController presentModalViewController:imagePickerController animated:YES];
|
||||||
[imagePickerController release];
|
[imagePickerController release];
|
||||||
|
|
|
@ -251,7 +251,7 @@
|
||||||
<dict>
|
<dict>
|
||||||
<key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
|
<key>PBXSmartGroupTreeModuleColumnWidthsKey</key>
|
||||||
<array>
|
<array>
|
||||||
<real>293</real>
|
<real>273</real>
|
||||||
</array>
|
</array>
|
||||||
<key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
|
<key>PBXSmartGroupTreeModuleColumnsKey_v4</key>
|
||||||
<array>
|
<array>
|
||||||
|
@ -265,19 +265,21 @@
|
||||||
<string>29B97314FDCFA39411CA2CEA</string>
|
<string>29B97314FDCFA39411CA2CEA</string>
|
||||||
<string>080E96DDFE201D6D7F000001</string>
|
<string>080E96DDFE201D6D7F000001</string>
|
||||||
<string>1FBADE3510AAFAE400BAB679</string>
|
<string>1FBADE3510AAFAE400BAB679</string>
|
||||||
|
<string>29B97323FDCFA39411CA2CEA</string>
|
||||||
|
<string>1DF5F4DF0D08C38300B7A737</string>
|
||||||
<string>1C37FABC05509CD000000102</string>
|
<string>1C37FABC05509CD000000102</string>
|
||||||
</array>
|
</array>
|
||||||
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
|
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
|
||||||
<array>
|
<array>
|
||||||
<array>
|
<array>
|
||||||
<integer>11</integer>
|
<integer>5</integer>
|
||||||
<integer>2</integer>
|
<integer>2</integer>
|
||||||
<integer>1</integer>
|
<integer>1</integer>
|
||||||
<integer>0</integer>
|
<integer>0</integer>
|
||||||
</array>
|
</array>
|
||||||
</array>
|
</array>
|
||||||
<key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
|
<key>PBXSmartGroupTreeModuleOutlineStateVisibleRectKey</key>
|
||||||
<string>{{0, 0}, {293, 1018}}</string>
|
<string>{{0, 0}, {273, 660}}</string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>PBXTopSmartGroupGIDs</key>
|
<key>PBXTopSmartGroupGIDs</key>
|
||||||
<array/>
|
<array/>
|
||||||
|
@ -289,19 +291,19 @@
|
||||||
<key>GeometryConfiguration</key>
|
<key>GeometryConfiguration</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>Frame</key>
|
<key>Frame</key>
|
||||||
<string>{{0, 0}, {310, 1036}}</string>
|
<string>{{0, 0}, {290, 678}}</string>
|
||||||
<key>GroupTreeTableConfiguration</key>
|
<key>GroupTreeTableConfiguration</key>
|
||||||
<array>
|
<array>
|
||||||
<string>MainColumn</string>
|
<string>MainColumn</string>
|
||||||
<real>293</real>
|
<real>273</real>
|
||||||
</array>
|
</array>
|
||||||
<key>RubberWindowFrame</key>
|
<key>RubberWindowFrame</key>
|
||||||
<string>38 82 1370 1077 0 0 1920 1178 </string>
|
<string>0 59 1280 719 0 0 1280 778 </string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Module</key>
|
<key>Module</key>
|
||||||
<string>PBXSmartGroupTreeModule</string>
|
<string>PBXSmartGroupTreeModule</string>
|
||||||
<key>Proportion</key>
|
<key>Proportion</key>
|
||||||
<string>310pt</string>
|
<string>290pt</string>
|
||||||
</dict>
|
</dict>
|
||||||
<dict>
|
<dict>
|
||||||
<key>Dock</key>
|
<key>Dock</key>
|
||||||
|
@ -314,7 +316,7 @@
|
||||||
<key>PBXProjectModuleGUID</key>
|
<key>PBXProjectModuleGUID</key>
|
||||||
<string>1CE0B20306471E060097A5F4</string>
|
<string>1CE0B20306471E060097A5F4</string>
|
||||||
<key>PBXProjectModuleLabel</key>
|
<key>PBXProjectModuleLabel</key>
|
||||||
<string>JPImagePickerDetailController.m</string>
|
<string>JPImagePickerController.h</string>
|
||||||
<key>PBXSplitModuleInNavigatorKey</key>
|
<key>PBXSplitModuleInNavigatorKey</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>Split0</key>
|
<key>Split0</key>
|
||||||
|
@ -322,27 +324,35 @@
|
||||||
<key>PBXProjectModuleGUID</key>
|
<key>PBXProjectModuleGUID</key>
|
||||||
<string>1CE0B20406471E060097A5F4</string>
|
<string>1CE0B20406471E060097A5F4</string>
|
||||||
<key>PBXProjectModuleLabel</key>
|
<key>PBXProjectModuleLabel</key>
|
||||||
<string>JPImagePickerDetailController.m</string>
|
<string>JPImagePickerController.h</string>
|
||||||
<key>_historyCapacity</key>
|
<key>_historyCapacity</key>
|
||||||
<integer>0</integer>
|
<integer>0</integer>
|
||||||
<key>bookmark</key>
|
<key>bookmark</key>
|
||||||
<string>1FB6FC4410AB158D00232E4B</string>
|
<string>1F545A9E10AEE784006D143F</string>
|
||||||
<key>history</key>
|
<key>history</key>
|
||||||
<array>
|
<array>
|
||||||
<string>1FBADE5110AAFBE900BAB679</string>
|
|
||||||
<string>1FBADE5310AAFBE900BAB679</string>
|
|
||||||
<string>1FBADE5410AAFBE900BAB679</string>
|
|
||||||
<string>1FBADE7210AAFCF300BAB679</string>
|
<string>1FBADE7210AAFCF300BAB679</string>
|
||||||
<string>1FB6FC3010AB0BD400232E4B</string>
|
<string>1FB6FC3010AB0BD400232E4B</string>
|
||||||
<string>1FB6FC3110AB0BD400232E4B</string>
|
<string>1FB6FC3110AB0BD400232E4B</string>
|
||||||
<string>1FB6FC3210AB0BD400232E4B</string>
|
|
||||||
<string>1FB6FC3410AB0BD400232E4B</string>
|
<string>1FB6FC3410AB0BD400232E4B</string>
|
||||||
<string>1FB6FC3510AB0BD400232E4B</string>
|
<string>1FB6FC3510AB0BD400232E4B</string>
|
||||||
<string>1FB6FC3F10AB158D00232E4B</string>
|
<string>1FB6FC3F10AB158D00232E4B</string>
|
||||||
<string>1FB6FC4010AB158D00232E4B</string>
|
<string>1F545A7810AC573F006D143F</string>
|
||||||
<string>1FB6FC4110AB158D00232E4B</string>
|
<string>1F545A7A10AC573F006D143F</string>
|
||||||
<string>1FB6FC4210AB158D00232E4B</string>
|
<string>1F545A7C10AC573F006D143F</string>
|
||||||
<string>1FB6FC4310AB158D00232E4B</string>
|
<string>1F545A7E10AC573F006D143F</string>
|
||||||
|
<string>1F545A8010AC573F006D143F</string>
|
||||||
|
<string>1F545A9210AEE784006D143F</string>
|
||||||
|
<string>1F545A9310AEE784006D143F</string>
|
||||||
|
<string>1F545A9410AEE784006D143F</string>
|
||||||
|
<string>1F545A9610AEE784006D143F</string>
|
||||||
|
<string>1F545A9710AEE784006D143F</string>
|
||||||
|
<string>1F545A9810AEE784006D143F</string>
|
||||||
|
<string>1F545A9910AEE784006D143F</string>
|
||||||
|
<string>1F545A9A10AEE784006D143F</string>
|
||||||
|
<string>1F545A9B10AEE784006D143F</string>
|
||||||
|
<string>1F545A9C10AEE784006D143F</string>
|
||||||
|
<string>1F545A9D10AEE784006D143F</string>
|
||||||
</array>
|
</array>
|
||||||
</dict>
|
</dict>
|
||||||
<key>SplitCount</key>
|
<key>SplitCount</key>
|
||||||
|
@ -354,14 +364,14 @@
|
||||||
<key>GeometryConfiguration</key>
|
<key>GeometryConfiguration</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>Frame</key>
|
<key>Frame</key>
|
||||||
<string>{{0, 0}, {1055, 722}}</string>
|
<string>{{0, 0}, {985, 673}}</string>
|
||||||
<key>RubberWindowFrame</key>
|
<key>RubberWindowFrame</key>
|
||||||
<string>38 82 1370 1077 0 0 1920 1178 </string>
|
<string>0 59 1280 719 0 0 1280 778 </string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Module</key>
|
<key>Module</key>
|
||||||
<string>PBXNavigatorGroup</string>
|
<string>PBXNavigatorGroup</string>
|
||||||
<key>Proportion</key>
|
<key>Proportion</key>
|
||||||
<string>722pt</string>
|
<string>673pt</string>
|
||||||
</dict>
|
</dict>
|
||||||
<dict>
|
<dict>
|
||||||
<key>ContentConfiguration</key>
|
<key>ContentConfiguration</key>
|
||||||
|
@ -374,18 +384,18 @@
|
||||||
<key>GeometryConfiguration</key>
|
<key>GeometryConfiguration</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>Frame</key>
|
<key>Frame</key>
|
||||||
<string>{{0, 727}, {1055, 309}}</string>
|
<string>{{0, 678}, {985, 0}}</string>
|
||||||
<key>RubberWindowFrame</key>
|
<key>RubberWindowFrame</key>
|
||||||
<string>38 82 1370 1077 0 0 1920 1178 </string>
|
<string>0 59 1280 719 0 0 1280 778 </string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Module</key>
|
<key>Module</key>
|
||||||
<string>XCDetailModule</string>
|
<string>XCDetailModule</string>
|
||||||
<key>Proportion</key>
|
<key>Proportion</key>
|
||||||
<string>309pt</string>
|
<string>0pt</string>
|
||||||
</dict>
|
</dict>
|
||||||
</array>
|
</array>
|
||||||
<key>Proportion</key>
|
<key>Proportion</key>
|
||||||
<string>1055pt</string>
|
<string>985pt</string>
|
||||||
</dict>
|
</dict>
|
||||||
</array>
|
</array>
|
||||||
<key>Name</key>
|
<key>Name</key>
|
||||||
|
@ -400,9 +410,9 @@
|
||||||
</array>
|
</array>
|
||||||
<key>TableOfContents</key>
|
<key>TableOfContents</key>
|
||||||
<array>
|
<array>
|
||||||
<string>1FB6FC3810AB0BD400232E4B</string>
|
<string>1F545A2B10AC5076006D143F</string>
|
||||||
<string>1CE0B1FE06471DED0097A5F4</string>
|
<string>1CE0B1FE06471DED0097A5F4</string>
|
||||||
<string>1FB6FC3910AB0BD400232E4B</string>
|
<string>1F545A2C10AC5076006D143F</string>
|
||||||
<string>1CE0B20306471E060097A5F4</string>
|
<string>1CE0B20306471E060097A5F4</string>
|
||||||
<string>1CE0B20506471E060097A5F4</string>
|
<string>1CE0B20506471E060097A5F4</string>
|
||||||
</array>
|
</array>
|
||||||
|
@ -540,14 +550,13 @@
|
||||||
<integer>5</integer>
|
<integer>5</integer>
|
||||||
<key>WindowOrderList</key>
|
<key>WindowOrderList</key>
|
||||||
<array>
|
<array>
|
||||||
<string>1C78EAAD065D492600B07095</string>
|
<string>1C530D57069F1CE1000CFCEE</string>
|
||||||
<string>1CD10A99069EF8BA00B06720</string>
|
<string>1CD10A99069EF8BA00B06720</string>
|
||||||
<string>1FBADE3B10AAFAF000BAB679</string>
|
<string>1FBADE3B10AAFAF000BAB679</string>
|
||||||
<string>1C530D57069F1CE1000CFCEE</string>
|
|
||||||
<string>/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/JPImagePickerDemo.xcodeproj</string>
|
<string>/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/JPImagePickerDemo.xcodeproj</string>
|
||||||
</array>
|
</array>
|
||||||
<key>WindowString</key>
|
<key>WindowString</key>
|
||||||
<string>38 82 1370 1077 0 0 1920 1178 </string>
|
<string>0 59 1280 719 0 0 1280 778 </string>
|
||||||
<key>WindowToolsV3</key>
|
<key>WindowToolsV3</key>
|
||||||
<array>
|
<array>
|
||||||
<dict>
|
<dict>
|
||||||
|
@ -577,7 +586,7 @@
|
||||||
<key>Frame</key>
|
<key>Frame</key>
|
||||||
<string>{{0, 0}, {500, 218}}</string>
|
<string>{{0, 0}, {500, 218}}</string>
|
||||||
<key>RubberWindowFrame</key>
|
<key>RubberWindowFrame</key>
|
||||||
<string>587 501 500 500 0 0 1920 1178 </string>
|
<string>322 215 500 500 0 0 1280 778 </string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Module</key>
|
<key>Module</key>
|
||||||
<string>PBXNavigatorGroup</string>
|
<string>PBXNavigatorGroup</string>
|
||||||
|
@ -601,7 +610,7 @@
|
||||||
<key>Frame</key>
|
<key>Frame</key>
|
||||||
<string>{{0, 223}, {500, 236}}</string>
|
<string>{{0, 223}, {500, 236}}</string>
|
||||||
<key>RubberWindowFrame</key>
|
<key>RubberWindowFrame</key>
|
||||||
<string>587 501 500 500 0 0 1920 1178 </string>
|
<string>322 215 500 500 0 0 1280 778 </string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Module</key>
|
<key>Module</key>
|
||||||
<string>PBXBuildResultsModule</string>
|
<string>PBXBuildResultsModule</string>
|
||||||
|
@ -624,7 +633,7 @@
|
||||||
<key>TableOfContents</key>
|
<key>TableOfContents</key>
|
||||||
<array>
|
<array>
|
||||||
<string>1FBADE3B10AAFAF000BAB679</string>
|
<string>1FBADE3B10AAFAF000BAB679</string>
|
||||||
<string>1FB6FC3A10AB0BD400232E4B</string>
|
<string>1F545A2D10AC5076006D143F</string>
|
||||||
<string>1CD0528F0623707200166675</string>
|
<string>1CD0528F0623707200166675</string>
|
||||||
<string>XCMainBuildResultsModuleGUID</string>
|
<string>XCMainBuildResultsModuleGUID</string>
|
||||||
</array>
|
</array>
|
||||||
|
@ -633,7 +642,7 @@
|
||||||
<key>WindowContentMinSize</key>
|
<key>WindowContentMinSize</key>
|
||||||
<string>486 300</string>
|
<string>486 300</string>
|
||||||
<key>WindowString</key>
|
<key>WindowString</key>
|
||||||
<string>587 501 500 500 0 0 1920 1178 </string>
|
<string>322 215 500 500 0 0 1280 778 </string>
|
||||||
<key>WindowToolGUID</key>
|
<key>WindowToolGUID</key>
|
||||||
<string>1FBADE3B10AAFAF000BAB679</string>
|
<string>1FBADE3B10AAFAF000BAB679</string>
|
||||||
<key>WindowToolIsVisible</key>
|
<key>WindowToolIsVisible</key>
|
||||||
|
@ -668,8 +677,8 @@
|
||||||
<string>yes</string>
|
<string>yes</string>
|
||||||
<key>sizes</key>
|
<key>sizes</key>
|
||||||
<array>
|
<array>
|
||||||
<string>{{0, 0}, {316, 194}}</string>
|
<string>{{0, 0}, {316, 198}}</string>
|
||||||
<string>{{316, 0}, {378, 194}}</string>
|
<string>{{316, 0}, {378, 198}}</string>
|
||||||
</array>
|
</array>
|
||||||
</dict>
|
</dict>
|
||||||
<key>VerticalSplitView</key>
|
<key>VerticalSplitView</key>
|
||||||
|
@ -684,8 +693,8 @@
|
||||||
<string>yes</string>
|
<string>yes</string>
|
||||||
<key>sizes</key>
|
<key>sizes</key>
|
||||||
<array>
|
<array>
|
||||||
<string>{{0, 0}, {694, 194}}</string>
|
<string>{{0, 0}, {694, 198}}</string>
|
||||||
<string>{{0, 194}, {694, 187}}</string>
|
<string>{{0, 198}, {694, 183}}</string>
|
||||||
</array>
|
</array>
|
||||||
</dict>
|
</dict>
|
||||||
</dict>
|
</dict>
|
||||||
|
@ -718,12 +727,12 @@
|
||||||
<real>148</real>
|
<real>148</real>
|
||||||
</array>
|
</array>
|
||||||
<key>Frame</key>
|
<key>Frame</key>
|
||||||
<string>{{316, 0}, {378, 194}}</string>
|
<string>{{316, 0}, {378, 198}}</string>
|
||||||
<key>RubberWindowFrame</key>
|
<key>RubberWindowFrame</key>
|
||||||
<string>59 714 694 422 0 0 1920 1178 </string>
|
<string>28 338 694 422 0 0 1280 778 </string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>RubberWindowFrame</key>
|
<key>RubberWindowFrame</key>
|
||||||
<string>59 714 694 422 0 0 1920 1178 </string>
|
<string>28 338 694 422 0 0 1280 778 </string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Module</key>
|
<key>Module</key>
|
||||||
<string>PBXDebugSessionModule</string>
|
<string>PBXDebugSessionModule</string>
|
||||||
|
@ -746,18 +755,18 @@
|
||||||
<key>TableOfContents</key>
|
<key>TableOfContents</key>
|
||||||
<array>
|
<array>
|
||||||
<string>1CD10A99069EF8BA00B06720</string>
|
<string>1CD10A99069EF8BA00B06720</string>
|
||||||
<string>1FB6FC4510AB158D00232E4B</string>
|
<string>1F545A2E10AC5076006D143F</string>
|
||||||
<string>1C162984064C10D400B95A72</string>
|
<string>1C162984064C10D400B95A72</string>
|
||||||
<string>1FB6FC4610AB158D00232E4B</string>
|
<string>1F545A2F10AC5076006D143F</string>
|
||||||
<string>1FB6FC4710AB158D00232E4B</string>
|
<string>1F545A3010AC5076006D143F</string>
|
||||||
<string>1FB6FC4810AB158D00232E4B</string>
|
<string>1F545A3110AC5076006D143F</string>
|
||||||
<string>1FB6FC4910AB158D00232E4B</string>
|
<string>1F545A3210AC5076006D143F</string>
|
||||||
<string>1FB6FC4A10AB158D00232E4B</string>
|
<string>1F545A3310AC5076006D143F</string>
|
||||||
</array>
|
</array>
|
||||||
<key>ToolbarConfiguration</key>
|
<key>ToolbarConfiguration</key>
|
||||||
<string>xcode.toolbar.config.debugV3</string>
|
<string>xcode.toolbar.config.debugV3</string>
|
||||||
<key>WindowString</key>
|
<key>WindowString</key>
|
||||||
<string>59 714 694 422 0 0 1920 1178 </string>
|
<string>28 338 694 422 0 0 1280 778 </string>
|
||||||
<key>WindowToolGUID</key>
|
<key>WindowToolGUID</key>
|
||||||
<string>1CD10A99069EF8BA00B06720</string>
|
<string>1CD10A99069EF8BA00B06720</string>
|
||||||
<key>WindowToolIsVisible</key>
|
<key>WindowToolIsVisible</key>
|
||||||
|
@ -793,7 +802,7 @@
|
||||||
<key>Frame</key>
|
<key>Frame</key>
|
||||||
<string>{{0, 0}, {781, 212}}</string>
|
<string>{{0, 0}, {781, 212}}</string>
|
||||||
<key>RubberWindowFrame</key>
|
<key>RubberWindowFrame</key>
|
||||||
<string>1026 569 781 470 0 0 1920 1178 </string>
|
<string>449 248 781 470 0 0 1280 778 </string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Module</key>
|
<key>Module</key>
|
||||||
<string>PBXNavigatorGroup</string>
|
<string>PBXNavigatorGroup</string>
|
||||||
|
@ -819,7 +828,7 @@
|
||||||
<key>Frame</key>
|
<key>Frame</key>
|
||||||
<string>{{0, 217}, {781, 212}}</string>
|
<string>{{0, 217}, {781, 212}}</string>
|
||||||
<key>RubberWindowFrame</key>
|
<key>RubberWindowFrame</key>
|
||||||
<string>1026 569 781 470 0 0 1920 1178 </string>
|
<string>449 248 781 470 0 0 1280 778 </string>
|
||||||
</dict>
|
</dict>
|
||||||
<key>Module</key>
|
<key>Module</key>
|
||||||
<string>PBXProjectFindModule</string>
|
<string>PBXProjectFindModule</string>
|
||||||
|
@ -842,17 +851,17 @@
|
||||||
<key>TableOfContents</key>
|
<key>TableOfContents</key>
|
||||||
<array>
|
<array>
|
||||||
<string>1C530D57069F1CE1000CFCEE</string>
|
<string>1C530D57069F1CE1000CFCEE</string>
|
||||||
<string>1FB6FC3B10AB0BD400232E4B</string>
|
<string>1F545A9010AEE37E006D143F</string>
|
||||||
<string>1FB6FC3C10AB0BD400232E4B</string>
|
<string>1F545A9110AEE37E006D143F</string>
|
||||||
<string>1CDD528C0622207200134675</string>
|
<string>1CDD528C0622207200134675</string>
|
||||||
<string>1CD0528E0623707200166675</string>
|
<string>1CD0528E0623707200166675</string>
|
||||||
</array>
|
</array>
|
||||||
<key>WindowString</key>
|
<key>WindowString</key>
|
||||||
<string>1026 569 781 470 0 0 1920 1178 </string>
|
<string>449 248 781 470 0 0 1280 778 </string>
|
||||||
<key>WindowToolGUID</key>
|
<key>WindowToolGUID</key>
|
||||||
<string>1C530D57069F1CE1000CFCEE</string>
|
<string>1C530D57069F1CE1000CFCEE</string>
|
||||||
<key>WindowToolIsVisible</key>
|
<key>WindowToolIsVisible</key>
|
||||||
<true/>
|
<false/>
|
||||||
</dict>
|
</dict>
|
||||||
<dict>
|
<dict>
|
||||||
<key>Identifier</key>
|
<key>Identifier</key>
|
||||||
|
|
|
@ -20,56 +20,372 @@
|
||||||
1FBADE2A10AAFAD300BAB679 /* JPImagePickerDemo */,
|
1FBADE2A10AAFAD300BAB679 /* JPImagePickerDemo */,
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
1F34820610AB0B6B00D7CD17 /* PBXTextBookmark */ = {
|
1F545A2810AC5076006D143F /* PBXTextBookmark */ = {
|
||||||
isa = PBXTextBookmark;
|
|
||||||
fRef = 28C286DF0D94DF7D0034E888 /* RootViewController.h */;
|
|
||||||
name = "RootViewController.h: 14";
|
|
||||||
rLen = 21;
|
|
||||||
rLoc = 419;
|
|
||||||
rType = 0;
|
|
||||||
vrLen = 636;
|
|
||||||
vrLoc = 0;
|
|
||||||
};
|
|
||||||
1F34820710AB0B6B00D7CD17 /* PBXTextBookmark */ = {
|
|
||||||
isa = PBXTextBookmark;
|
isa = PBXTextBookmark;
|
||||||
fRef = 28C286E00D94DF7D0034E888 /* RootViewController.m */;
|
fRef = 28C286E00D94DF7D0034E888 /* RootViewController.m */;
|
||||||
name = "RootViewController.m: 9";
|
name = "RootViewController.m: 131";
|
||||||
rLen = 0;
|
rLen = 0;
|
||||||
rLoc = 151;
|
rLoc = 3807;
|
||||||
rType = 0;
|
rType = 0;
|
||||||
vrLen = 940;
|
vrLen = 1675;
|
||||||
vrLoc = 0;
|
vrLoc = 3290;
|
||||||
};
|
};
|
||||||
1F34820C10AB0B6B00D7CD17 /* PBXTextBookmark */ = {
|
1F545A2910AC5076006D143F /* PBXTextBookmark */ = {
|
||||||
isa = PBXTextBookmark;
|
isa = PBXTextBookmark;
|
||||||
fRef = 1FBADE3F10AAFB4600BAB679 /* JPImagePickerControllerDelegate.h */;
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
name = "JPImagePickerControllerDelegate.h: 20";
|
name = "JPImagePickerController.h: 1";
|
||||||
rLen = 0;
|
|
||||||
rLoc = 494;
|
|
||||||
rType = 0;
|
|
||||||
vrLen = 503;
|
|
||||||
vrLoc = 0;
|
|
||||||
};
|
|
||||||
1FB6FC2E10AB0BD400232E4B /* PBXTextBookmark */ = {
|
|
||||||
isa = PBXTextBookmark;
|
|
||||||
fRef = 1FBADE3F10AAFB4600BAB679 /* JPImagePickerControllerDelegate.h */;
|
|
||||||
name = "JPImagePickerControllerDelegate.h: 20";
|
|
||||||
rLen = 0;
|
|
||||||
rLoc = 494;
|
|
||||||
rType = 0;
|
|
||||||
vrLen = 503;
|
|
||||||
vrLoc = 0;
|
|
||||||
};
|
|
||||||
1FB6FC2F10AB0BD400232E4B /* PBXTextBookmark */ = {
|
|
||||||
isa = PBXTextBookmark;
|
|
||||||
fRef = 1FBADE3E10AAFB4600BAB679 /* JPImagePickerControllerDataSource.h */;
|
|
||||||
name = "JPImagePickerControllerDataSource.h: 1";
|
|
||||||
rLen = 0;
|
rLen = 0;
|
||||||
rLoc = 0;
|
rLoc = 0;
|
||||||
rType = 0;
|
rType = 0;
|
||||||
vrLen = 603;
|
vrLen = 1279;
|
||||||
vrLoc = 0;
|
vrLoc = 0;
|
||||||
};
|
};
|
||||||
|
1F545A2A10AC5076006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 1";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 0;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1279;
|
||||||
|
vrLoc = 0;
|
||||||
|
};
|
||||||
|
1F545A3410AC54C4006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 27";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 699;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1478;
|
||||||
|
vrLoc = 0;
|
||||||
|
};
|
||||||
|
1F545A3510AC5527006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 26";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 697;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1477;
|
||||||
|
vrLoc = 0;
|
||||||
|
};
|
||||||
|
1F545A3610AC5564006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 22";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 532;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1487;
|
||||||
|
vrLoc = 0;
|
||||||
|
};
|
||||||
|
1F545A7810AC573F006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1F545A7910AC573F006D143F /* UIAccelerometer.h */;
|
||||||
|
name = "UIAccelerometer.h: 1";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 0;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1117;
|
||||||
|
vrLoc = 132;
|
||||||
|
};
|
||||||
|
1F545A7910AC573F006D143F /* UIAccelerometer.h */ = {
|
||||||
|
isa = PBXFileReference;
|
||||||
|
name = UIAccelerometer.h;
|
||||||
|
path = /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccelerometer.h;
|
||||||
|
sourceTree = "<absolute>";
|
||||||
|
};
|
||||||
|
1F545A7A10AC573F006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1F545A7B10AC573F006D143F /* UIAccessibility.h */;
|
||||||
|
name = "UIAccessibility.h: 1";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 0;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1327;
|
||||||
|
vrLoc = 0;
|
||||||
|
};
|
||||||
|
1F545A7B10AC573F006D143F /* UIAccessibility.h */ = {
|
||||||
|
isa = PBXFileReference;
|
||||||
|
name = UIAccessibility.h;
|
||||||
|
path = /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h;
|
||||||
|
sourceTree = "<absolute>";
|
||||||
|
};
|
||||||
|
1F545A7C10AC573F006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1F545A7D10AC573F006D143F /* UIBarItem.h */;
|
||||||
|
name = "UIBarItem.h: 1";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 0;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 691;
|
||||||
|
vrLoc = 0;
|
||||||
|
};
|
||||||
|
1F545A7D10AC573F006D143F /* UIBarItem.h */ = {
|
||||||
|
isa = PBXFileReference;
|
||||||
|
name = UIBarItem.h;
|
||||||
|
path = /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIBarItem.h;
|
||||||
|
sourceTree = "<absolute>";
|
||||||
|
};
|
||||||
|
1F545A7E10AC573F006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1F545A7F10AC573F006D143F /* UIButton.h */;
|
||||||
|
name = "UIButton.h: 1";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 0;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1373;
|
||||||
|
vrLoc = 0;
|
||||||
|
};
|
||||||
|
1F545A7F10AC573F006D143F /* UIButton.h */ = {
|
||||||
|
isa = PBXFileReference;
|
||||||
|
name = UIButton.h;
|
||||||
|
path = /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIButton.h;
|
||||||
|
sourceTree = "<absolute>";
|
||||||
|
};
|
||||||
|
1F545A8010AC573F006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1F545A8110AC573F006D143F /* UIImagePickerController.h */;
|
||||||
|
name = "UIImagePickerController.h: 1";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 0;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1565;
|
||||||
|
vrLoc = 0;
|
||||||
|
};
|
||||||
|
1F545A8110AC573F006D143F /* UIImagePickerController.h */ = {
|
||||||
|
isa = PBXFileReference;
|
||||||
|
name = UIImagePickerController.h;
|
||||||
|
path = /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIImagePickerController.h;
|
||||||
|
sourceTree = "<absolute>";
|
||||||
|
};
|
||||||
|
1F545A8210AC573F006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 22";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 532;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1487;
|
||||||
|
vrLoc = 0;
|
||||||
|
};
|
||||||
|
1F545A8310AC573F006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 23";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 519;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1491;
|
||||||
|
vrLoc = 33;
|
||||||
|
};
|
||||||
|
1F545A8410AC5768006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 23";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 521;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1487;
|
||||||
|
vrLoc = 3;
|
||||||
|
};
|
||||||
|
1F545A8510AC57E0006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 43";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 1483;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1369;
|
||||||
|
vrLoc = 64;
|
||||||
|
};
|
||||||
|
1F545A8610AC5872006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 39";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 1126;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1425;
|
||||||
|
vrLoc = 321;
|
||||||
|
};
|
||||||
|
1F545A8710AC5CF0006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 28C286E00D94DF7D0034E888 /* RootViewController.m */;
|
||||||
|
name = "RootViewController.m: 131";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 3807;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1235;
|
||||||
|
vrLoc = 5565;
|
||||||
|
};
|
||||||
|
1F545A8810AC5CF0006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE4510AAFB4600BAB679 /* JPImagePickerController.m */;
|
||||||
|
name = "JPImagePickerController.m: 55";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 1875;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1496;
|
||||||
|
vrLoc = 704;
|
||||||
|
};
|
||||||
|
1F545A8910AC5CF0006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 68";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 2245;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1511;
|
||||||
|
vrLoc = 1005;
|
||||||
|
};
|
||||||
|
1F545A8A10AC5CF0006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 84";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 2828;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1616;
|
||||||
|
vrLoc = 1217;
|
||||||
|
};
|
||||||
|
1F545A8B10AC5D5B006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 90";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 2969;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1521;
|
||||||
|
vrLoc = 1488;
|
||||||
|
};
|
||||||
|
1F545A9210AEE784006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE4510AAFB4600BAB679 /* JPImagePickerController.m */;
|
||||||
|
name = "JPImagePickerController.m: 55";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 1875;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1045;
|
||||||
|
vrLoc = 2016;
|
||||||
|
};
|
||||||
|
1F545A9310AEE784006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE4110AAFB4600BAB679 /* JPImagePickerOverviewController.h */;
|
||||||
|
name = "JPImagePickerOverviewController.h: 1";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 0;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 953;
|
||||||
|
vrLoc = 0;
|
||||||
|
};
|
||||||
|
1F545A9410AEE784006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1F545A9510AEE784006D143F /* UITableView.h */;
|
||||||
|
name = "UITableView.h: 1";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 0;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 920;
|
||||||
|
vrLoc = 0;
|
||||||
|
};
|
||||||
|
1F545A9510AEE784006D143F /* UITableView.h */ = {
|
||||||
|
isa = PBXFileReference;
|
||||||
|
name = UITableView.h;
|
||||||
|
path = /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.2.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableView.h;
|
||||||
|
sourceTree = "<absolute>";
|
||||||
|
};
|
||||||
|
1F545A9610AEE784006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE4710AAFB4600BAB679 /* JPImagePickerOverviewController.m */;
|
||||||
|
name = "JPImagePickerOverviewController.m: 101";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 3256;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 891;
|
||||||
|
vrLoc = 3010;
|
||||||
|
};
|
||||||
|
1F545A9710AEE784006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE4010AAFB4600BAB679 /* JPImagePickerDetailController.h */;
|
||||||
|
name = "JPImagePickerDetailController.h: 12";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 236;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1002;
|
||||||
|
vrLoc = 139;
|
||||||
|
};
|
||||||
|
1F545A9810AEE784006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE4610AAFB4600BAB679 /* JPImagePickerDetailController.m */;
|
||||||
|
name = "JPImagePickerDetailController.m: 59";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 1518;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1312;
|
||||||
|
vrLoc = 1358;
|
||||||
|
};
|
||||||
|
1F545A9910AEE784006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 28C286E00D94DF7D0034E888 /* RootViewController.m */;
|
||||||
|
name = "RootViewController.m: 82";
|
||||||
|
rLen = 9;
|
||||||
|
rLoc = 1883;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 777;
|
||||||
|
vrLoc = 1355;
|
||||||
|
};
|
||||||
|
1F545A9A10AEE784006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 28C286DF0D94DF7D0034E888 /* RootViewController.h */;
|
||||||
|
name = "RootViewController.h: 10";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 179;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 640;
|
||||||
|
vrLoc = 0;
|
||||||
|
};
|
||||||
|
1F545A9B10AEE784006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3F10AAFB4600BAB679 /* JPImagePickerControllerDelegate.h */;
|
||||||
|
name = "JPImagePickerControllerDelegate.h: 13";
|
||||||
|
rLen = 1157;
|
||||||
|
rLoc = 241;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1357;
|
||||||
|
vrLoc = 41;
|
||||||
|
};
|
||||||
|
1F545A9C10AEE784006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3E10AAFB4600BAB679 /* JPImagePickerControllerDataSource.h */;
|
||||||
|
name = "JPImagePickerControllerDataSource.h: 13";
|
||||||
|
rLen = 1558;
|
||||||
|
rLoc = 233;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1526;
|
||||||
|
vrLoc = 265;
|
||||||
|
};
|
||||||
|
1F545A9D10AEE784006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 134";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 3015;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1208;
|
||||||
|
vrLoc = 2970;
|
||||||
|
};
|
||||||
|
1F545A9E10AEE784006D143F /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
|
||||||
|
name = "JPImagePickerController.h: 95";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 3014;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1439;
|
||||||
|
vrLoc = 1576;
|
||||||
|
};
|
||||||
1FB6FC3010AB0BD400232E4B /* PBXTextBookmark */ = {
|
1FB6FC3010AB0BD400232E4B /* PBXTextBookmark */ = {
|
||||||
isa = PBXTextBookmark;
|
isa = PBXTextBookmark;
|
||||||
fRef = 1FBADE4210AAFB4600BAB679 /* UIImageResizing.h */;
|
fRef = 1FBADE4210AAFB4600BAB679 /* UIImageResizing.h */;
|
||||||
|
@ -100,16 +416,6 @@
|
||||||
vrLen = 640;
|
vrLen = 640;
|
||||||
vrLoc = 0;
|
vrLoc = 0;
|
||||||
};
|
};
|
||||||
1FB6FC3310AB0BD400232E4B /* PBXTextBookmark */ = {
|
|
||||||
isa = PBXTextBookmark;
|
|
||||||
fRef = 28C286E00D94DF7D0034E888 /* RootViewController.m */;
|
|
||||||
name = "RootViewController.m: 9";
|
|
||||||
rLen = 0;
|
|
||||||
rLoc = 150;
|
|
||||||
rType = 0;
|
|
||||||
vrLen = 1512;
|
|
||||||
vrLoc = 0;
|
|
||||||
};
|
|
||||||
1FB6FC3410AB0BD400232E4B /* PBXTextBookmark */ = {
|
1FB6FC3410AB0BD400232E4B /* PBXTextBookmark */ = {
|
||||||
isa = PBXTextBookmark;
|
isa = PBXTextBookmark;
|
||||||
fRef = 1D3623240D0F684500981E51 /* JPImagePickerDemoAppDelegate.h */;
|
fRef = 1D3623240D0F684500981E51 /* JPImagePickerDemoAppDelegate.h */;
|
||||||
|
@ -130,23 +436,6 @@
|
||||||
vrLen = 851;
|
vrLen = 851;
|
||||||
vrLoc = 0;
|
vrLoc = 0;
|
||||||
};
|
};
|
||||||
1FB6FC3610AB0BD400232E4B /* PBXTextBookmark */ = {
|
|
||||||
isa = PBXTextBookmark;
|
|
||||||
fRef = 29B97316FDCFA39411CA2CEA /* main.m */;
|
|
||||||
rLen = 0;
|
|
||||||
rLoc = 107;
|
|
||||||
rType = 0;
|
|
||||||
};
|
|
||||||
1FB6FC3710AB0BD400232E4B /* PBXTextBookmark */ = {
|
|
||||||
isa = PBXTextBookmark;
|
|
||||||
fRef = 29B97316FDCFA39411CA2CEA /* main.m */;
|
|
||||||
name = "main.m: 9";
|
|
||||||
rLen = 0;
|
|
||||||
rLoc = 136;
|
|
||||||
rType = 0;
|
|
||||||
vrLen = 366;
|
|
||||||
vrLoc = 0;
|
|
||||||
};
|
|
||||||
1FB6FC3F10AB158D00232E4B /* PBXTextBookmark */ = {
|
1FB6FC3F10AB158D00232E4B /* PBXTextBookmark */ = {
|
||||||
isa = PBXTextBookmark;
|
isa = PBXTextBookmark;
|
||||||
fRef = 29B97316FDCFA39411CA2CEA /* main.m */;
|
fRef = 29B97316FDCFA39411CA2CEA /* main.m */;
|
||||||
|
@ -162,7 +451,7 @@
|
||||||
fRef = 1FBADE3F10AAFB4600BAB679 /* JPImagePickerControllerDelegate.h */;
|
fRef = 1FBADE3F10AAFB4600BAB679 /* JPImagePickerControllerDelegate.h */;
|
||||||
name = "JPImagePickerControllerDelegate.h: 18";
|
name = "JPImagePickerControllerDelegate.h: 18";
|
||||||
rLen = 0;
|
rLen = 0;
|
||||||
rLoc = 452;
|
rLoc = 1352;
|
||||||
rType = 0;
|
rType = 0;
|
||||||
vrLen = 498;
|
vrLen = 498;
|
||||||
vrLoc = 0;
|
vrLoc = 0;
|
||||||
|
@ -177,35 +466,32 @@
|
||||||
vrLen = 603;
|
vrLen = 603;
|
||||||
vrLoc = 0;
|
vrLoc = 0;
|
||||||
};
|
};
|
||||||
1FB6FC4210AB158D00232E4B /* PBXTextBookmark */ = {
|
1FB6FC7110AB649100232E4B /* PBXTextBookmark */ = {
|
||||||
|
isa = PBXTextBookmark;
|
||||||
|
fRef = 1FBADE4610AAFB4600BAB679 /* JPImagePickerDetailController.m */;
|
||||||
|
name = "JPImagePickerDetailController.m: 67";
|
||||||
|
rLen = 0;
|
||||||
|
rLoc = 1814;
|
||||||
|
rType = 0;
|
||||||
|
vrLen = 1722;
|
||||||
|
vrLoc = 951;
|
||||||
|
};
|
||||||
|
1FB6FC7210AB649100232E4B /* PBXTextBookmark */ = {
|
||||||
isa = PBXTextBookmark;
|
isa = PBXTextBookmark;
|
||||||
fRef = 28C286E00D94DF7D0034E888 /* RootViewController.m */;
|
fRef = 28C286E00D94DF7D0034E888 /* RootViewController.m */;
|
||||||
name = "RootViewController.m: 197";
|
|
||||||
rLen = 0;
|
rLen = 0;
|
||||||
rLoc = 6016;
|
rLoc = 3807;
|
||||||
rType = 0;
|
rType = 0;
|
||||||
vrLen = 1305;
|
|
||||||
vrLoc = 5498;
|
|
||||||
};
|
};
|
||||||
1FB6FC4310AB158D00232E4B /* PBXTextBookmark */ = {
|
1FB6FC7410AB692B00232E4B /* PBXTextBookmark */ = {
|
||||||
isa = PBXTextBookmark;
|
isa = PBXTextBookmark;
|
||||||
fRef = 1FBADE4610AAFB4600BAB679 /* JPImagePickerDetailController.m */;
|
fRef = 28C286E00D94DF7D0034E888 /* RootViewController.m */;
|
||||||
name = "JPImagePickerDetailController.m: 1";
|
name = "RootViewController.m: 131";
|
||||||
rLen = 0;
|
rLen = 0;
|
||||||
rLoc = 0;
|
rLoc = 3807;
|
||||||
rType = 0;
|
rType = 0;
|
||||||
vrLen = 1240;
|
vrLen = 1628;
|
||||||
vrLoc = 0;
|
vrLoc = 3017;
|
||||||
};
|
|
||||||
1FB6FC4410AB158D00232E4B /* PBXTextBookmark */ = {
|
|
||||||
isa = PBXTextBookmark;
|
|
||||||
fRef = 1FBADE4610AAFB4600BAB679 /* JPImagePickerDetailController.m */;
|
|
||||||
name = "JPImagePickerDetailController.m: 81";
|
|
||||||
rLen = 0;
|
|
||||||
rLoc = 2640;
|
|
||||||
rType = 0;
|
|
||||||
vrLen = 1504;
|
|
||||||
vrLoc = 1518;
|
|
||||||
};
|
};
|
||||||
1FBADE2A10AAFAD300BAB679 /* JPImagePickerDemo */ = {
|
1FBADE2A10AAFAD300BAB679 /* JPImagePickerDemo */ = {
|
||||||
isa = PBXExecutable;
|
isa = PBXExecutable;
|
||||||
|
@ -251,37 +537,37 @@
|
||||||
};
|
};
|
||||||
1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */ = {
|
1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */ = {
|
||||||
uiCtxt = {
|
uiCtxt = {
|
||||||
sepNavIntBoundsRect = "{{0, 0}, {519, 615}}";
|
sepNavIntBoundsRect = "{{0, 0}, {924, 1440}}";
|
||||||
sepNavSelRange = "{0, 0}";
|
sepNavSelRange = "{3014, 0}";
|
||||||
sepNavVisRange = "{0, 435}";
|
sepNavVisRange = "{1576, 1439}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
1FBADE3E10AAFB4600BAB679 /* JPImagePickerControllerDataSource.h */ = {
|
1FBADE3E10AAFB4600BAB679 /* JPImagePickerControllerDataSource.h */ = {
|
||||||
uiCtxt = {
|
uiCtxt = {
|
||||||
sepNavIntBoundsRect = "{{0, 0}, {994, 667}}";
|
sepNavIntBoundsRect = "{{0, 0}, {924, 840}}";
|
||||||
sepNavSelRange = "{0, 0}";
|
sepNavSelRange = "{233, 1558}";
|
||||||
sepNavVisRange = "{0, 603}";
|
sepNavVisRange = "{265, 1526}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
1FBADE3F10AAFB4600BAB679 /* JPImagePickerControllerDelegate.h */ = {
|
1FBADE3F10AAFB4600BAB679 /* JPImagePickerControllerDelegate.h */ = {
|
||||||
uiCtxt = {
|
uiCtxt = {
|
||||||
sepNavIntBoundsRect = "{{0, 0}, {994, 667}}";
|
sepNavIntBoundsRect = "{{0, 0}, {924, 675}}";
|
||||||
sepNavSelRange = "{452, 0}";
|
sepNavSelRange = "{241, 1157}";
|
||||||
sepNavVisRange = "{0, 498}";
|
sepNavVisRange = "{41, 1357}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
1FBADE4010AAFB4600BAB679 /* JPImagePickerDetailController.h */ = {
|
1FBADE4010AAFB4600BAB679 /* JPImagePickerDetailController.h */ = {
|
||||||
uiCtxt = {
|
uiCtxt = {
|
||||||
sepNavIntBoundsRect = "{{0, 0}, {439, 600}}";
|
sepNavIntBoundsRect = "{{0, 0}, {924, 555}}";
|
||||||
sepNavSelRange = "{0, 0}";
|
sepNavSelRange = "{236, 0}";
|
||||||
sepNavVisRange = "{0, 458}";
|
sepNavVisRange = "{139, 1002}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
1FBADE4110AAFB4600BAB679 /* JPImagePickerOverviewController.h */ = {
|
1FBADE4110AAFB4600BAB679 /* JPImagePickerOverviewController.h */ = {
|
||||||
uiCtxt = {
|
uiCtxt = {
|
||||||
sepNavIntBoundsRect = "{{0, 0}, {453, 630}}";
|
sepNavIntBoundsRect = "{{0, 0}, {924, 585}}";
|
||||||
sepNavSelRange = "{0, 0}";
|
sepNavSelRange = "{0, 0}";
|
||||||
sepNavVisRange = "{0, 464}";
|
sepNavVisRange = "{0, 953}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
1FBADE4210AAFB4600BAB679 /* UIImageResizing.h */ = {
|
1FBADE4210AAFB4600BAB679 /* UIImageResizing.h */ = {
|
||||||
|
@ -291,11 +577,25 @@
|
||||||
sepNavVisRange = "{0, 835}";
|
sepNavVisRange = "{0, 835}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
1FBADE4510AAFB4600BAB679 /* JPImagePickerController.m */ = {
|
||||||
|
uiCtxt = {
|
||||||
|
sepNavIntBoundsRect = "{{0, 0}, {1146, 1560}}";
|
||||||
|
sepNavSelRange = "{1875, 0}";
|
||||||
|
sepNavVisRange = "{2016, 1045}";
|
||||||
|
};
|
||||||
|
};
|
||||||
1FBADE4610AAFB4600BAB679 /* JPImagePickerDetailController.m */ = {
|
1FBADE4610AAFB4600BAB679 /* JPImagePickerDetailController.m */ = {
|
||||||
uiCtxt = {
|
uiCtxt = {
|
||||||
sepNavIntBoundsRect = "{{0, 0}, {1783, 1545}}";
|
sepNavIntBoundsRect = "{{0, 0}, {1783, 1455}}";
|
||||||
sepNavSelRange = "{2640, 0}";
|
sepNavSelRange = "{1518, 0}";
|
||||||
sepNavVisRange = "{1518, 1504}";
|
sepNavVisRange = "{1358, 1312}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
1FBADE4710AAFB4600BAB679 /* JPImagePickerOverviewController.m */ = {
|
||||||
|
uiCtxt = {
|
||||||
|
sepNavIntBoundsRect = "{{0, 0}, {924, 1860}}";
|
||||||
|
sepNavSelRange = "{3256, 0}";
|
||||||
|
sepNavVisRange = "{3010, 891}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
1FBADE4810AAFB4600BAB679 /* UIImageResizing.m */ = {
|
1FBADE4810AAFB4600BAB679 /* UIImageResizing.m */ = {
|
||||||
|
@ -335,52 +635,22 @@
|
||||||
vrLen = 458;
|
vrLen = 458;
|
||||||
vrLoc = 0;
|
vrLoc = 0;
|
||||||
};
|
};
|
||||||
1FBADE5510AAFBE900BAB679 /* PBXTextBookmark */ = {
|
|
||||||
isa = PBXTextBookmark;
|
|
||||||
fRef = 1FBADE3F10AAFB4600BAB679 /* JPImagePickerControllerDelegate.h */;
|
|
||||||
name = "JPImagePickerControllerDelegate.h: 20";
|
|
||||||
rLen = 0;
|
|
||||||
rLoc = 494;
|
|
||||||
rType = 0;
|
|
||||||
vrLen = 499;
|
|
||||||
vrLoc = 0;
|
|
||||||
};
|
|
||||||
1FBADE7210AAFCF300BAB679 /* PBXBookmark */ = {
|
1FBADE7210AAFCF300BAB679 /* PBXBookmark */ = {
|
||||||
isa = PBXBookmark;
|
isa = PBXBookmark;
|
||||||
fRef = 1FBADE6210AAFC5D00BAB679 /* i3.png */;
|
fRef = 1FBADE6210AAFC5D00BAB679 /* i3.png */;
|
||||||
};
|
};
|
||||||
1FBADE8F10AAFEDE00BAB679 /* PBXTextBookmark */ = {
|
|
||||||
isa = PBXTextBookmark;
|
|
||||||
fRef = 1FBADE4210AAFB4600BAB679 /* UIImageResizing.h */;
|
|
||||||
name = "UIImageResizing.h: 1";
|
|
||||||
rLen = 0;
|
|
||||||
rLoc = 0;
|
|
||||||
rType = 0;
|
|
||||||
vrLen = 831;
|
|
||||||
vrLoc = 0;
|
|
||||||
};
|
|
||||||
1FBADE9010AAFEDE00BAB679 /* PBXTextBookmark */ = {
|
|
||||||
isa = PBXTextBookmark;
|
|
||||||
fRef = 1FBADE4810AAFB4600BAB679 /* UIImageResizing.m */;
|
|
||||||
name = "UIImageResizing.m: 1";
|
|
||||||
rLen = 0;
|
|
||||||
rLoc = 0;
|
|
||||||
rType = 0;
|
|
||||||
vrLen = 1842;
|
|
||||||
vrLoc = 0;
|
|
||||||
};
|
|
||||||
28C286DF0D94DF7D0034E888 /* RootViewController.h */ = {
|
28C286DF0D94DF7D0034E888 /* RootViewController.h */ = {
|
||||||
uiCtxt = {
|
uiCtxt = {
|
||||||
sepNavIntBoundsRect = "{{0, 0}, {994, 999}}";
|
sepNavIntBoundsRect = "{{0, 0}, {924, 439}}";
|
||||||
sepNavSelRange = "{121, 29}";
|
sepNavSelRange = "{179, 0}";
|
||||||
sepNavVisRange = "{0, 640}";
|
sepNavVisRange = "{0, 640}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
28C286E00D94DF7D0034E888 /* RootViewController.m */ = {
|
28C286E00D94DF7D0034E888 /* RootViewController.m */ = {
|
||||||
uiCtxt = {
|
uiCtxt = {
|
||||||
sepNavIntBoundsRect = "{{0, 0}, {1328, 3285}}";
|
sepNavIntBoundsRect = "{{0, 0}, {924, 3645}}";
|
||||||
sepNavSelRange = "{6016, 0}";
|
sepNavSelRange = "{1883, 9}";
|
||||||
sepNavVisRange = "{5498, 1305}";
|
sepNavVisRange = "{1355, 777}";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
29B97313FDCFA39411CA2CEA /* Project object */ = {
|
29B97313FDCFA39411CA2CEA /* Project object */ = {
|
||||||
|
@ -401,7 +671,7 @@
|
||||||
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
|
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
|
||||||
PBXFileTableDataSourceColumnWidthsKey = (
|
PBXFileTableDataSourceColumnWidthsKey = (
|
||||||
20,
|
20,
|
||||||
816,
|
746,
|
||||||
20,
|
20,
|
||||||
48,
|
48,
|
||||||
43,
|
43,
|
||||||
|
@ -423,7 +693,7 @@
|
||||||
PBXFileTableDataSourceColumnSortingKey = PBXFindDataSource_LocationID;
|
PBXFileTableDataSourceColumnSortingKey = PBXFindDataSource_LocationID;
|
||||||
PBXFileTableDataSourceColumnWidthsKey = (
|
PBXFileTableDataSourceColumnWidthsKey = (
|
||||||
200,
|
200,
|
||||||
830,
|
760,
|
||||||
);
|
);
|
||||||
PBXFileTableDataSourceColumnsKey = (
|
PBXFileTableDataSourceColumnsKey = (
|
||||||
PBXFindDataSource_MessageID,
|
PBXFindDataSource_MessageID,
|
||||||
|
@ -446,36 +716,82 @@
|
||||||
PBXSymbolsDataSource_ReferenceNameID,
|
PBXSymbolsDataSource_ReferenceNameID,
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
PBXPerProjectTemplateStateSaveDate = 279645056;
|
PBXConfiguration.PBXFileTableDataSource3.XCSCMDataSource = {
|
||||||
PBXWorkspaceStateSaveDate = 279645056;
|
PBXFileTableDataSourceColumnSortingDirectionKey = "-1";
|
||||||
|
PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID;
|
||||||
|
PBXFileTableDataSourceColumnWidthsKey = (
|
||||||
|
20,
|
||||||
|
20,
|
||||||
|
722,
|
||||||
|
20,
|
||||||
|
48.16259765625,
|
||||||
|
43,
|
||||||
|
43,
|
||||||
|
20,
|
||||||
|
);
|
||||||
|
PBXFileTableDataSourceColumnsKey = (
|
||||||
|
PBXFileDataSource_SCM_ColumnID,
|
||||||
|
PBXFileDataSource_FiletypeID,
|
||||||
|
PBXFileDataSource_Filename_ColumnID,
|
||||||
|
PBXFileDataSource_Built_ColumnID,
|
||||||
|
PBXFileDataSource_ObjectSize_ColumnID,
|
||||||
|
PBXFileDataSource_Errors_ColumnID,
|
||||||
|
PBXFileDataSource_Warnings_ColumnID,
|
||||||
|
PBXFileDataSource_Target_ColumnID,
|
||||||
|
);
|
||||||
|
};
|
||||||
|
PBXPerProjectTemplateStateSaveDate = 279727411;
|
||||||
|
PBXWorkspaceStateSaveDate = 279727411;
|
||||||
};
|
};
|
||||||
perUserProjectItems = {
|
perUserProjectItems = {
|
||||||
1F34820610AB0B6B00D7CD17 = 1F34820610AB0B6B00D7CD17 /* PBXTextBookmark */;
|
1F545A2810AC5076006D143F /* PBXTextBookmark */ = 1F545A2810AC5076006D143F /* PBXTextBookmark */;
|
||||||
1F34820710AB0B6B00D7CD17 = 1F34820710AB0B6B00D7CD17 /* PBXTextBookmark */;
|
1F545A2910AC5076006D143F /* PBXTextBookmark */ = 1F545A2910AC5076006D143F /* PBXTextBookmark */;
|
||||||
1F34820C10AB0B6B00D7CD17 = 1F34820C10AB0B6B00D7CD17 /* PBXTextBookmark */;
|
1F545A2A10AC5076006D143F /* PBXTextBookmark */ = 1F545A2A10AC5076006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC2E10AB0BD400232E4B /* PBXTextBookmark */ = 1FB6FC2E10AB0BD400232E4B /* PBXTextBookmark */;
|
1F545A3410AC54C4006D143F /* PBXTextBookmark */ = 1F545A3410AC54C4006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC2F10AB0BD400232E4B /* PBXTextBookmark */ = 1FB6FC2F10AB0BD400232E4B /* PBXTextBookmark */;
|
1F545A3510AC5527006D143F /* PBXTextBookmark */ = 1F545A3510AC5527006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC3010AB0BD400232E4B /* PBXTextBookmark */ = 1FB6FC3010AB0BD400232E4B /* PBXTextBookmark */;
|
1F545A3610AC5564006D143F /* PBXTextBookmark */ = 1F545A3610AC5564006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC3110AB0BD400232E4B /* PBXTextBookmark */ = 1FB6FC3110AB0BD400232E4B /* PBXTextBookmark */;
|
1F545A7810AC573F006D143F /* PBXTextBookmark */ = 1F545A7810AC573F006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC3210AB0BD400232E4B /* PBXTextBookmark */ = 1FB6FC3210AB0BD400232E4B /* PBXTextBookmark */;
|
1F545A7A10AC573F006D143F /* PBXTextBookmark */ = 1F545A7A10AC573F006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC3310AB0BD400232E4B /* PBXTextBookmark */ = 1FB6FC3310AB0BD400232E4B /* PBXTextBookmark */;
|
1F545A7C10AC573F006D143F /* PBXTextBookmark */ = 1F545A7C10AC573F006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC3410AB0BD400232E4B /* PBXTextBookmark */ = 1FB6FC3410AB0BD400232E4B /* PBXTextBookmark */;
|
1F545A7E10AC573F006D143F /* PBXTextBookmark */ = 1F545A7E10AC573F006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC3510AB0BD400232E4B /* PBXTextBookmark */ = 1FB6FC3510AB0BD400232E4B /* PBXTextBookmark */;
|
1F545A8010AC573F006D143F /* PBXTextBookmark */ = 1F545A8010AC573F006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC3610AB0BD400232E4B /* PBXTextBookmark */ = 1FB6FC3610AB0BD400232E4B /* PBXTextBookmark */;
|
1F545A8210AC573F006D143F /* PBXTextBookmark */ = 1F545A8210AC573F006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC3710AB0BD400232E4B /* PBXTextBookmark */ = 1FB6FC3710AB0BD400232E4B /* PBXTextBookmark */;
|
1F545A8310AC573F006D143F /* PBXTextBookmark */ = 1F545A8310AC573F006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC3F10AB158D00232E4B /* PBXTextBookmark */ = 1FB6FC3F10AB158D00232E4B /* PBXTextBookmark */;
|
1F545A8410AC5768006D143F /* PBXTextBookmark */ = 1F545A8410AC5768006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC4010AB158D00232E4B /* PBXTextBookmark */ = 1FB6FC4010AB158D00232E4B /* PBXTextBookmark */;
|
1F545A8510AC57E0006D143F /* PBXTextBookmark */ = 1F545A8510AC57E0006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC4110AB158D00232E4B /* PBXTextBookmark */ = 1FB6FC4110AB158D00232E4B /* PBXTextBookmark */;
|
1F545A8610AC5872006D143F /* PBXTextBookmark */ = 1F545A8610AC5872006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC4210AB158D00232E4B /* PBXTextBookmark */ = 1FB6FC4210AB158D00232E4B /* PBXTextBookmark */;
|
1F545A8710AC5CF0006D143F /* PBXTextBookmark */ = 1F545A8710AC5CF0006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC4310AB158D00232E4B /* PBXTextBookmark */ = 1FB6FC4310AB158D00232E4B /* PBXTextBookmark */;
|
1F545A8810AC5CF0006D143F /* PBXTextBookmark */ = 1F545A8810AC5CF0006D143F /* PBXTextBookmark */;
|
||||||
1FB6FC4410AB158D00232E4B /* PBXTextBookmark */ = 1FB6FC4410AB158D00232E4B /* PBXTextBookmark */;
|
1F545A8910AC5CF0006D143F /* PBXTextBookmark */ = 1F545A8910AC5CF0006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A8A10AC5CF0006D143F /* PBXTextBookmark */ = 1F545A8A10AC5CF0006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A8B10AC5D5B006D143F /* PBXTextBookmark */ = 1F545A8B10AC5D5B006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A9210AEE784006D143F /* PBXTextBookmark */ = 1F545A9210AEE784006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A9310AEE784006D143F /* PBXTextBookmark */ = 1F545A9310AEE784006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A9410AEE784006D143F /* PBXTextBookmark */ = 1F545A9410AEE784006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A9610AEE784006D143F /* PBXTextBookmark */ = 1F545A9610AEE784006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A9710AEE784006D143F /* PBXTextBookmark */ = 1F545A9710AEE784006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A9810AEE784006D143F /* PBXTextBookmark */ = 1F545A9810AEE784006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A9910AEE784006D143F /* PBXTextBookmark */ = 1F545A9910AEE784006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A9A10AEE784006D143F /* PBXTextBookmark */ = 1F545A9A10AEE784006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A9B10AEE784006D143F /* PBXTextBookmark */ = 1F545A9B10AEE784006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A9C10AEE784006D143F /* PBXTextBookmark */ = 1F545A9C10AEE784006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A9D10AEE784006D143F /* PBXTextBookmark */ = 1F545A9D10AEE784006D143F /* PBXTextBookmark */;
|
||||||
|
1F545A9E10AEE784006D143F /* PBXTextBookmark */ = 1F545A9E10AEE784006D143F /* PBXTextBookmark */;
|
||||||
|
1FB6FC3010AB0BD400232E4B = 1FB6FC3010AB0BD400232E4B /* PBXTextBookmark */;
|
||||||
|
1FB6FC3110AB0BD400232E4B = 1FB6FC3110AB0BD400232E4B /* PBXTextBookmark */;
|
||||||
|
1FB6FC3210AB0BD400232E4B = 1FB6FC3210AB0BD400232E4B /* PBXTextBookmark */;
|
||||||
|
1FB6FC3410AB0BD400232E4B = 1FB6FC3410AB0BD400232E4B /* PBXTextBookmark */;
|
||||||
|
1FB6FC3510AB0BD400232E4B = 1FB6FC3510AB0BD400232E4B /* PBXTextBookmark */;
|
||||||
|
1FB6FC3F10AB158D00232E4B = 1FB6FC3F10AB158D00232E4B /* PBXTextBookmark */;
|
||||||
|
1FB6FC4010AB158D00232E4B = 1FB6FC4010AB158D00232E4B /* PBXTextBookmark */;
|
||||||
|
1FB6FC4110AB158D00232E4B = 1FB6FC4110AB158D00232E4B /* PBXTextBookmark */;
|
||||||
|
1FB6FC7110AB649100232E4B = 1FB6FC7110AB649100232E4B /* PBXTextBookmark */;
|
||||||
|
1FB6FC7210AB649100232E4B = 1FB6FC7210AB649100232E4B /* PBXTextBookmark */;
|
||||||
|
1FB6FC7410AB692B00232E4B = 1FB6FC7410AB692B00232E4B /* PBXTextBookmark */;
|
||||||
1FBADE5110AAFBE900BAB679 = 1FBADE5110AAFBE900BAB679 /* PBXTextBookmark */;
|
1FBADE5110AAFBE900BAB679 = 1FBADE5110AAFBE900BAB679 /* PBXTextBookmark */;
|
||||||
1FBADE5310AAFBE900BAB679 = 1FBADE5310AAFBE900BAB679 /* PBXTextBookmark */;
|
1FBADE5310AAFBE900BAB679 = 1FBADE5310AAFBE900BAB679 /* PBXTextBookmark */;
|
||||||
1FBADE5410AAFBE900BAB679 = 1FBADE5410AAFBE900BAB679 /* PBXTextBookmark */;
|
1FBADE5410AAFBE900BAB679 = 1FBADE5410AAFBE900BAB679 /* PBXTextBookmark */;
|
||||||
1FBADE5510AAFBE900BAB679 = 1FBADE5510AAFBE900BAB679 /* PBXTextBookmark */;
|
|
||||||
1FBADE7210AAFCF300BAB679 = 1FBADE7210AAFCF300BAB679 /* PBXBookmark */;
|
1FBADE7210AAFCF300BAB679 = 1FBADE7210AAFCF300BAB679 /* PBXBookmark */;
|
||||||
1FBADE8F10AAFEDE00BAB679 = 1FBADE8F10AAFEDE00BAB679 /* PBXTextBookmark */;
|
|
||||||
1FBADE9010AAFEDE00BAB679 = 1FBADE9010AAFEDE00BAB679 /* PBXTextBookmark */;
|
|
||||||
};
|
};
|
||||||
sourceControlManager = 1FBADE3610AAFAE400BAB679 /* Source Control */;
|
sourceControlManager = 1FBADE3610AAFAE400BAB679 /* Source Control */;
|
||||||
userBuildSettings = {
|
userBuildSettings = {
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,12 +1,12 @@
|
||||||
2efb7e6761bfe1539109357e51bc00b3 dbd4a60a3512253eec96800ce34b8407 ffffffffffffffffffffffffffffffff 612 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
|
|
||||||
00000000000000000000000000000000 2787580867e62a2f54da231cba6a8344 ffffffffffffffffffffffffffffffff 102 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM
|
00000000000000000000000000000000 2787580867e62a2f54da231cba6a8344 ffffffffffffffffffffffffffffffff 102 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM
|
||||||
ae89f87e65c1eea012545e94a310986a 39082bf423d1817a775b00ad85dd0dfd ffffffffffffffffffffffffffffffff 46872 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
|
2efb7e6761be11a09109357e51bc00b1 dbd4a60a3512253eec96800ce34b8407 ffffffffffffffffffffffffffffffff 612 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
|
||||||
|
ae89f87e65c01e5312545e94a3109868 39082bf423d1817a775b00ad85dd0dfd ffffffffffffffffffffffffffffffff 46872 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
|
||||||
|
a0f8243d33c8cc304810ace9d90e8d28 2e088e8d5b9515dcc3163b1e82180b49 ffffffffffffffffffffffffffffffff 45336 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o
|
||||||
|
a0f8243d338e21fb4810ace9d90e8d6f d5c4fd76dc79b86487cc859c33800440 ffffffffffffffffffffffffffffffff 14276 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/UIImageResizing.o
|
||||||
a0f8243d338e21c34810ace9d90e8c5a 0754afa3c0accb63678bffea93731839 ffffffffffffffffffffffffffffffff 46960 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerOverviewController.o
|
a0f8243d338e21c34810ace9d90e8c5a 0754afa3c0accb63678bffea93731839 ffffffffffffffffffffffffffffffff 46960 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerOverviewController.o
|
||||||
a0f8243d7933cc334810ace9d90e8bfc 89dae7856ca707c22195dbc7255b4dae ffffffffffffffffffffffffffffffff 43108 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDetailController.o
|
a0f8243d7933cc334810ace9d90e8bfc 89dae7856ca707c22195dbc7255b4dae ffffffffffffffffffffffffffffffff 43108 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDetailController.o
|
||||||
a0f8243d338e08c84810ace9d90e9f0b 7e64d59fd4cf5847d13de36310971dae ffffffffffffffffffffffffffffffff 44632 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerController.o
|
a0f8243d338e08c84810ace9d90e9f0b 7e64d59fd4cf5847d13de36310971dae ffffffffffffffffffffffffffffffff 44632 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerController.o
|
||||||
a0f8243d33c93cc34810ace9d90e8d2a 2e088e8d5b9515dcc3163b1e82180b49 ffffffffffffffffffffffffffffffff 45332 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o
|
|
||||||
a0f8243d7974d2f74810ace9d90e93c3 8fcd25d94343fda27d715f561b1e374e ffffffffffffffffffffffffffffffff 40120 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemoAppDelegate.o
|
a0f8243d7974d2f74810ace9d90e93c3 8fcd25d94343fda27d715f561b1e374e ffffffffffffffffffffffffffffffff 40120 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemoAppDelegate.o
|
||||||
a0f8243d338e21fb4810ace9d90e8d6f d5c4fd76dc79b86487cc859c33800440 ffffffffffffffffffffffffffffffff 14276 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/UIImageResizing.o
|
|
||||||
a0f8243d7974d2894810ace9d90e9489 8a9a17d8a0b5740af4ccd4e777415008 ffffffffffffffffffffffffffffffff 6008 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/main.o
|
a0f8243d7974d2894810ace9d90e9489 8a9a17d8a0b5740af4ccd4e777415008 ffffffffffffffffffffffffffffffff 6008 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/main.o
|
||||||
0000000000472e360000000000000c70 a0f8243d7974c6f24810ace9d90e9e1f ffffffffffffffffffffffffffffffff 13034960 /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/JPImagePickerDemo_Prefix-bnqcateynndgjzbnupefcatmctos/JPImagePickerDemo_Prefix.pch.gch
|
0000000000472e360000000000000c70 a0f8243d7974c6f24810ace9d90e9e1f ffffffffffffffffffffffffffffffff 13034960 /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/JPImagePickerDemo_Prefix-bnqcateynndgjzbnupefcatmctos/JPImagePickerDemo_Prefix.pch.gch
|
||||||
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 5298 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/t4.png
|
ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffff 5298 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/t4.png
|
||||||
|
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
||||||
TJPImagePickerDemo
|
TJPImagePickerDemo
|
||||||
v7
|
v7
|
||||||
r0
|
r0
|
||||||
t279647741.367597
|
t279667857.715493
|
||||||
cCheck dependencies
|
cCheck dependencies
|
||||||
cProcessInfoPlistFile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/Info.plist JPImagePickerDemo-Info.plist
|
cProcessInfoPlistFile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/Info.plist JPImagePickerDemo-Info.plist
|
||||||
cCompileXIB /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/MainWindow.xib
|
cCompileXIB /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/MainWindow.xib
|
||||||
|
@ -156,9 +156,9 @@ i"JPImagePickerControllerDelegate.h"
|
||||||
i"JPImagePickerControllerDataSource.h"
|
i"JPImagePickerControllerDataSource.h"
|
||||||
|
|
||||||
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/RootViewController.m
|
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/RootViewController.m
|
||||||
c000000004AFADDFC0000000000001A93
|
c000000004AFB2D0F0000000000001A91
|
||||||
t1257954812
|
t1257975055
|
||||||
s6803
|
s6801
|
||||||
i"RootViewController.h"
|
i"RootViewController.h"
|
||||||
i"JPImagePickerController.h"
|
i"JPImagePickerController.h"
|
||||||
|
|
||||||
|
@ -193,11 +193,11 @@ t1257950277
|
||||||
s20092
|
s20092
|
||||||
|
|
||||||
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
|
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
|
||||||
t1257954941
|
t1257975057
|
||||||
s612
|
s612
|
||||||
|
|
||||||
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM
|
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM
|
||||||
t1257954941
|
t1257975057
|
||||||
s102
|
s102
|
||||||
|
|
||||||
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/Info.plist
|
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/Info.plist
|
||||||
|
@ -205,7 +205,7 @@ t1257948986
|
||||||
s610
|
s610
|
||||||
|
|
||||||
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
|
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
|
||||||
t1257954941
|
t1257975057
|
||||||
s46872
|
s46872
|
||||||
|
|
||||||
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDetailController.nib
|
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDetailController.nib
|
||||||
|
@ -286,8 +286,8 @@ t1257954941
|
||||||
s46960
|
s46960
|
||||||
|
|
||||||
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o
|
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o
|
||||||
t1257954941
|
t1257975057
|
||||||
s45332
|
s45336
|
||||||
|
|
||||||
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/UIImageResizing.o
|
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/UIImageResizing.o
|
||||||
t1257954183
|
t1257954183
|
||||||
|
@ -645,7 +645,7 @@ s909
|
||||||
|
|
||||||
CCheck dependencies
|
CCheck dependencies
|
||||||
r0
|
r0
|
||||||
lSLF07#2@18"Check dependencies279647740#279647740#0(0"0(0#1#0"4300885448#0"0#
|
lSLF07#2@18"Check dependencies279667857#279667857#0(0"0(0#1#0"4300885448#0"0#
|
||||||
|
|
||||||
CCompileC build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerController.o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerController.m normal i386 objective-c com.apple.compilers.gcc.4_2
|
CCompileC build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerController.o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerController.m normal i386 objective-c com.apple.compilers.gcc.4_2
|
||||||
s279647741.009628
|
s279647741.009628
|
||||||
|
@ -752,8 +752,8 @@ xcom.apple.compilers.gcc.4_2
|
||||||
lSLF07#2@89"Compile /Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m279641789#279641789#0(0"0(0#0#81"/Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m4300885448#2132" cd /Users/jeena/Projects/JPImagePickerDemo
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 -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.1.2.sdk -fvisibility=hidden -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-generated-files.hmap -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-own-target-headers.hmap -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-all-target-headers.hmap -iquote /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-project-headers.hmap -F/Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator -I/Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/DerivedSources/i386 -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/JPImagePickerDemo_Prefix-fbjjrxgyeetirnecylhgibgnsbqr/JPImagePickerDemo_Prefix.pch -c /Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m -o /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerOverviewController.o
0#
|
lSLF07#2@89"Compile /Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m279641789#279641789#0(0"0(0#0#81"/Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m4300885448#2132" cd /Users/jeena/Projects/JPImagePickerDemo
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 -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.1.2.sdk -fvisibility=hidden -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-generated-files.hmap -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-own-target-headers.hmap -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-all-target-headers.hmap -iquote /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-project-headers.hmap -F/Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator -I/Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/DerivedSources/i386 -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/JPImagePickerDemo_Prefix-fbjjrxgyeetirnecylhgibgnsbqr/JPImagePickerDemo_Prefix.pch -c /Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m -o /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerOverviewController.o
0#
|
||||||
|
|
||||||
CCompileC build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/RootViewController.m normal i386 objective-c com.apple.compilers.gcc.4_2
|
CCompileC build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/RootViewController.m normal i386 objective-c com.apple.compilers.gcc.4_2
|
||||||
s279647740.877984
|
s279667857.290606
|
||||||
e279647741.213401
|
e279667857.520693
|
||||||
r1
|
r1
|
||||||
xCompileC
|
xCompileC
|
||||||
xbuild/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o
|
xbuild/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o
|
||||||
|
@ -762,7 +762,7 @@ xnormal
|
||||||
xi386
|
xi386
|
||||||
xobjective-c
|
xobjective-c
|
||||||
xcom.apple.compilers.gcc.4_2
|
xcom.apple.compilers.gcc.4_2
|
||||||
lSLF07#2@100"Compile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/RootViewController.m279647740#279647741#0(0"0(0#0#92"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/RootViewController.m4300885448#2370" cd /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo
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 -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.1.2.sdk -fvisibility=hidden -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-generated-files.hmap -I/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-own-target-headers.hmap -I/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-all-target-headers.hmap -iquote /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-project-headers.hmap -F/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator -I/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/DerivedSources/i386 -I/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/JPImagePickerDemo_Prefix-bnqcateynndgjzbnupefcatmctos/JPImagePickerDemo_Prefix.pch -c /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/RootViewController.m -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o
0#
|
lSLF07#2@100"Compile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/RootViewController.m279667857#279667857#0(0"0(0#0#92"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/RootViewController.m4300885448#2370" cd /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo
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 -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.1.2.sdk -fvisibility=hidden -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-generated-files.hmap -I/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-own-target-headers.hmap -I/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-all-target-headers.hmap -iquote /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-project-headers.hmap -F/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator -I/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/DerivedSources/i386 -I/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/DerivedSources -include /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/JPImagePickerDemo_Prefix-bnqcateynndgjzbnupefcatmctos/JPImagePickerDemo_Prefix.pch -c /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/RootViewController.m -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o
0#
|
||||||
|
|
||||||
CCompileC build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o /Users/jeena/Projects/JPImagePickerDemo/Classes/RootViewController.m normal i386 objective-c com.apple.compilers.gcc.4_2
|
CCompileC build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o /Users/jeena/Projects/JPImagePickerDemo/Classes/RootViewController.m normal i386 objective-c com.apple.compilers.gcc.4_2
|
||||||
s279643084.482617
|
s279643084.482617
|
||||||
|
@ -955,13 +955,13 @@ xt4.png
|
||||||
lSLF07#2@11"Copy t4.png279641787#279641787#0(0"0(0#0#46"/Users/jeena/Projects/JPImagePickerDemo/t4.png4300885448#463" cd /Users/jeena/Projects/JPImagePickerDemo
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 -resolve-src-symlinks /Users/jeena/Projects/JPImagePickerDemo/t4.png /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
0#
|
lSLF07#2@11"Copy t4.png279641787#279641787#0(0"0(0#0#46"/Users/jeena/Projects/JPImagePickerDemo/t4.png4300885448#463" cd /Users/jeena/Projects/JPImagePickerDemo
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 -resolve-src-symlinks /Users/jeena/Projects/JPImagePickerDemo/t4.png /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
0#
|
||||||
|
|
||||||
CGenerateDSYMFile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
|
CGenerateDSYMFile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
|
||||||
s279647741.338662
|
s279667857.686906
|
||||||
e279647741.364261
|
e279667857.712251
|
||||||
r1
|
r1
|
||||||
xGenerateDSYMFile
|
xGenerateDSYMFile
|
||||||
x/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM
|
x/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM
|
||||||
x/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
|
x/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
|
||||||
lSLF07#2@139"GenerateDSYMFile build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo279647741#279647741#0(0"0(0#0#131"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo4300885448#488" cd /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo
setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Developer/usr/bin/dsymutil /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM
0#
|
lSLF07#2@139"GenerateDSYMFile build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo279667857#279667857#0(0"0(0#0#131"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo4300885448#488" cd /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo
setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Developer/usr/bin/dsymutil /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM
0#
|
||||||
|
|
||||||
CGenerateDSYMFile /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
|
CGenerateDSYMFile /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
|
||||||
s279643084.642782
|
s279643084.642782
|
||||||
|
@ -973,14 +973,14 @@ x/Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePick
|
||||||
lSLF07#2@139"GenerateDSYMFile build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo279643084#279643084#0(0"0(0#0#107"/Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo4300885448#416" cd /Users/jeena/Projects/JPImagePickerDemo
setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Developer/usr/bin/dsymutil /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo -o /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM
0#
|
lSLF07#2@139"GenerateDSYMFile build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo279643084#279643084#0(0"0(0#0#107"/Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo4300885448#416" cd /Users/jeena/Projects/JPImagePickerDemo
setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Developer/usr/bin/dsymutil /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo -o /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM
0#
|
||||||
|
|
||||||
CLd /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo normal i386
|
CLd /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo normal i386
|
||||||
s279647741.314609
|
s279667857.520794
|
||||||
e279647741.338551
|
e279667857.686805
|
||||||
r1
|
r1
|
||||||
xLd
|
xLd
|
||||||
x/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
|
x/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
|
||||||
xnormal
|
xnormal
|
||||||
xi386
|
xi386
|
||||||
lSLF07#2@136"Link /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo279647741#279647741#0(0"0(0#0#0"4300885448#1039" cd /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo
setenv MACOSX_DEPLOYMENT_TARGET 10.5
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/iPhoneSimulator3.1.2.sdk -L/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator -F/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator -filelist /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemo.LinkFileList -mmacosx-version-min=10.5 -framework Foundation -framework UIKit -framework CoreGraphics -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
0#
|
lSLF07#2@136"Link /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo279667857#279667857#0(0"0(0#0#0"4300885448#1039" cd /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo
setenv MACOSX_DEPLOYMENT_TARGET 10.5
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/iPhoneSimulator3.1.2.sdk -L/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator -F/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator -filelist /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemo.LinkFileList -mmacosx-version-min=10.5 -framework Foundation -framework UIKit -framework CoreGraphics -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
0#
|
||||||
|
|
||||||
CLd /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo normal i386
|
CLd /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo normal i386
|
||||||
s279643084.618182
|
s279643084.618182
|
||||||
|
@ -1031,12 +1031,12 @@ xcom.apple.compilers.gcc.4_2
|
||||||
lSLF07#2@39"Precompile JPImagePickerDemo_Prefix.pch279641787#279641788#0(0"0(0#0#68"/Users/jeena/Projects/JPImagePickerDemo/JPImagePickerDemo_Prefix.pch5785488844197815296#1951" cd /Users/jeena/Projects/JPImagePickerDemo
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 -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.1.2.sdk -fvisibility=hidden -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-generated-files.hmap -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-own-target-headers.hmap -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-all-target-headers.hmap -iquote /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-project-headers.hmap -F/Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator -I/Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/DerivedSources/i386 -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/DerivedSources -c /Users/jeena/Projects/JPImagePickerDemo/JPImagePickerDemo_Prefix.pch -o /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/JPImagePickerDemo_Prefix-fbjjrxgyeetirnecylhgibgnsbqr/JPImagePickerDemo_Prefix.pch.gch
0#
|
lSLF07#2@39"Precompile JPImagePickerDemo_Prefix.pch279641787#279641788#0(0"0(0#0#68"/Users/jeena/Projects/JPImagePickerDemo/JPImagePickerDemo_Prefix.pch5785488844197815296#1951" cd /Users/jeena/Projects/JPImagePickerDemo
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 -D__IPHONE_OS_VERSION_MIN_REQUIRED=30000 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.1.2.sdk -fvisibility=hidden -mmacosx-version-min=10.5 -gdwarf-2 -iquote /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-generated-files.hmap -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-own-target-headers.hmap -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-all-target-headers.hmap -iquote /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/JPImagePickerDemo-project-headers.hmap -F/Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator -I/Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/include -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/DerivedSources/i386 -I/Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/DerivedSources -c /Users/jeena/Projects/JPImagePickerDemo/JPImagePickerDemo_Prefix.pch -o /var/folders/zD/zDRcSKAkH4qw4uzdwEpSCE+++TI/-Caches-/com.apple.Xcode.501/SharedPrecompiledHeaders/JPImagePickerDemo_Prefix-fbjjrxgyeetirnecylhgibgnsbqr/JPImagePickerDemo_Prefix.pch.gch
0#
|
||||||
|
|
||||||
CTouch /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
|
CTouch /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
|
||||||
s279647741.364352
|
s279667857.712352
|
||||||
e279647741.367542
|
e279667857.715445
|
||||||
r1
|
r1
|
||||||
xTouch
|
xTouch
|
||||||
x/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
|
x/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
|
||||||
lSLF07#2@119"Touch /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app279647741#279647741#0(0"0(0#0#0"4300885448#338" cd /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo
setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/usr/bin/touch -c /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
0#
|
lSLF07#2@119"Touch /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app279667857#279667857#0(0"0(0#0#0"4300885448#338" cd /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo
setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/usr/bin/touch -c /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
0#
|
||||||
|
|
||||||
CTouch /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
|
CTouch /Users/jeena/Projects/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
|
||||||
s279643084.664072
|
s279643084.664072
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in a new issue