Added HTML documentation

This commit is contained in:
Jeena Paradies 2009-11-14 20:02:01 +01:00
parent 04c065d4d6
commit a399dcd648
28 changed files with 885 additions and 127 deletions

View file

@ -120,7 +120,7 @@ enum JPImagePickerControllerPreviewImageSize {
/*!
@class JPImagePickerController
@abstract A image picker view.
@abstract A image picker view controller.
@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-14
@ -129,7 +129,7 @@ enum JPImagePickerControllerPreviewImageSize {
@interface JPImagePickerController : UIViewController {
IBOutlet UINavigationController *modalNavigationController;
JPImagePickerOverviewController *overviewController;
UIStatusBarStyle statusBarStyle;
UIStatusBarStyle originalStatusBarStyle;
id<JPImagePickerControllerDelegate> delegate;
id<JPImagePickerControllerDataSource> dataSource;
NSString *imagePickerTitle;
@ -157,7 +157,7 @@ enum JPImagePickerControllerPreviewImageSize {
@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 originalStatusBarStyle;
/*!
@property delegate

View file

@ -12,7 +12,7 @@
@implementation JPImagePickerController
@synthesize overviewController, modalNavigationController, delegate, dataSource, statusBarStyle;
@synthesize overviewController, modalNavigationController, delegate, dataSource, originalStatusBarStyle;
/*
// The designated initializer. Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
@ -29,7 +29,7 @@
- (void)viewDidLoad {
[super viewDidLoad];
statusBarStyle = [UIApplication sharedApplication].statusBarStyle;
originalStatusBarStyle = [UIApplication sharedApplication].statusBarStyle;
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackTranslucent animated:YES];
overviewController = [[JPImagePickerOverviewController alloc] initWithImagePickerController:self];

View file

@ -78,7 +78,7 @@
}
- (IBAction)finishedPicking:(id)sender {
[[UIApplication sharedApplication] setStatusBarStyle:overviewController.imagePickerController.statusBarStyle animated:YES];
[[UIApplication sharedApplication] setStatusBarStyle:overviewController.imagePickerController.originalStatusBarStyle animated:YES];
[overviewController.imagePickerController.delegate imagePicker:overviewController.imagePickerController didFinishPickingWithImageNumber:imageNumber];
}

View file

@ -91,7 +91,7 @@
*/
- (IBAction)cancelPicking:(id)sender {
[[UIApplication sharedApplication] setStatusBarStyle:imagePickerController.statusBarStyle animated:YES];
[[UIApplication sharedApplication] setStatusBarStyle:imagePickerController.originalStatusBarStyle animated:YES];
[imagePickerController.delegate imagePickerDidCancel:imagePickerController];
}

View file

@ -0,0 +1,188 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/1998/REC-html40-19980424/loose.dtd">
<html><head>
<title>JPImagePickerController</title>
<meta http-equiv="Content-Type" content="text/html; charset=ascii" />
<meta name="generator" content="HeaderDoc" />
<meta name="xcode-display" content="render" />
<style><!--
#tocMenu {
display: block;
position:fixed;
top:0px;
left:0px;
width:210px;
height:100%;
background:transparent;
}
#bodyText {
margin-left: 210px;
}
--></style>
<script language="JavaScript" type="text/javascript"><!--
function hidetoc() {
var origURL = parent.document.URL;
var contentURL = origURL.substring(origURL.indexOf('?')+1, origURL.length);
if (contentURL.length == origURL.length) {
jumpPos = origURL.substring(origURL.indexOf('#')+1, origURL.length);
}
if (contentURL == "hidetoc") {
var toc = document.getElementById('tocMenu');
var body = document.getElementById('bodyText');
if (toc && body) {
toc.style.display = 'none';
body.style.marginLeft = '0px';
}
}
}
--></script>
<style type="text/css"><!--.keyword {background:#ffffff; color:#761550;}.template {background:#ffffff; color:#761550;}.number {background: #ffffff; color:#0000ff;}.function {background:#ffffff; color:#000000;}.string {background: #ffffff; color:#891315;}.preprocessor {background:#ffffff; color:#236e25}.comment {background:#ffffff; color:#236e25}.char {background: #ffffff; color:#0000ff;}.var {background:#ffffff; color:#000000;}.type {background:#ffffff; color:#761550;}.param {background:#ffffff; color:#000000;}a:link {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:active {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}h4 {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: tiny; font-weight: bold;}body {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: 10pt;}.list_indent { margin-left: 40px; }.declaration_indent { margin-left: 40px; }.param_indent { margin-left: 40px; }.group_indent { margin-left: 40px; }.group_desc_indent { margin-left: 20px; }.warning_indent { margin-left: 40px; }.important_indent { margin-left: 40px; }.hd_tocAccess { font-style: italic; font-size: 10px; font-weight: normal; color: #303030; }--></style></head><body bgcolor="#ffffff" onload="hidetoc();">
</div>
<!-- headerDoc=cl; uid=//apple_ref/occ/cl/JPImagePickerController; name=JPImagePickerController-->
<a name="//apple_ref/occ/cl/JPImagePickerController"></a><div id='tocMenu'>
<iframe id='toc_content' name='toc_content' SRC='toc.html' width='210' height='100%' align='left' frameborder='0'>This document set is best viewed in a browser that supports iFrames.</iframe>
</div>
<div id='bodyText'>
<a name="top"></a>
<hr><table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h1><a name="JPImagePickerController">JPImagePickerController</a></h1>
</td></tr></table><hr><p><!-- begin abstract --><p>A image picker view controller.
<!-- end abstract --></p>
<p><b>Superclass:</b> <!-- a logicalPath="//apple_ref/occ/cl/UIViewController" -->UIViewController<!-- /a --><br>
<b>Declared In:</b> <a href="../../index.html" target="_top">JPImagePickerController.h</a><br>
</p><div class='declaration_indent'>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>A class which represents a image picker controller like apples UIImagePickerController
but lets you use a external dataSource for the images.
<!-- end discussion -->
<p></p><dl><dt><i>Updated:</i></dt><dd>Saturday, November 14, 2009</dd>
</dl>
<hr><br><a name="HeaderDoc_methods"></a>
<h2>Methods</h2>
<dl>
<dt><tt><a href="index.html#//apple_ref/occ/instm/JPImagePickerController/cancelPicking:" target="_top">-cancelPicking:</a></tt></dt>
<dd></dd>
</dl>
<hr><!-- headerDoc=instm; uid=//apple_ref/occ/instm/JPImagePickerController/cancelPicking:; name=JPImagePickerController::cancelPicking: -->
<a name="//apple_ref/occ/instm/JPImagePickerController/cancelPicking:"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="cancelPicking:">cancelPicking:</a></h3>
</td></tr></table><hr><p></p><div class='declaration_indent'>
<pre>- (<!-- a logicalPath="//apple_ref/occ/cl/void //apple_ref/occ/tdef/void //apple_ref/occ/tag/void //apple_ref/occ/econst/void //apple_ref/occ/struct/void //apple_ref/occ/clconst/void //apple_ref/occ/intf/void" --><span class="type">void</span><!-- /a -->)<!-- a logicalPath="//apple_ref/occ/instm/cancelPicking //apple_ref/occ/clm/cancelPicking //apple_ref/occ/intfcm/cancelPicking //apple_ref/occ/intfm/cancelPicking //apple_ref/occ/func/cancelPicking //apple_ref/occ/ftmplt/cancelPicking //apple_ref/occ/defn/cancelPicking //apple_ref/occ/macro/cancelPicking" --><span class="function">cancelPicking</span><!-- /a -->:(<!-- a logicalPath="//apple_ref/occ/cl/id //apple_ref/occ/tdef/id //apple_ref/occ/tag/id //apple_ref/occ/econst/id //apple_ref/occ/struct/id //apple_ref/occ/clconst/id //apple_ref/occ/intf/id" --><span class="type">id</span><!-- /a -->)<!-- a logicalPath="//apple_ref/occ/econst/sender //apple_ref/occ/data/sender" --><span class="var">sender</span><!-- /a -->; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Parameters</font></h5>
<div class='param_indent'>
<dl>
<dt><code>sender</code></dt><dd><p>The button which sends the action.</dd>
</dl>
</div>
<p></p><a name="HeaderDoc_props"></a>
<h2>Properties</h2>
<dl>
<dt><tt><a href="index.html#//apple_ref/occ/instp/JPImagePickerController/dataSource" target="_top">dataSource</a></tt></dt>
<dd><p>The data source for the picker view.
</dd>
<dt><tt><a href="index.html#//apple_ref/occ/instp/JPImagePickerController/delegate" target="_top">delegate</a></tt></dt>
<dd><p>The image picker's delegate object.
</dd>
<dt><tt><a href="index.html#//apple_ref/occ/instp/JPImagePickerController/imagePickerTitle" target="_top">imagePickerTitle</a></tt></dt>
<dd><p>The image picker title.
</dd>
<dt><tt><a href="index.html#//apple_ref/occ/instp/JPImagePickerController/modalNavigationController" target="_top">modalNavigationController</a></tt></dt>
<dd><p>The additional navigation controller.
</dd>
<dt><tt><a href="index.html#//apple_ref/occ/instp/JPImagePickerController/originalStatusBarStyle" target="_top">originalStatusBarStyle</a></tt></dt>
<dd><p>Original StatusBarStyle at the beginning.
</dd>
<dt><tt><a href="index.html#//apple_ref/occ/instp/JPImagePickerController/overviewController" target="_top">overviewController</a></tt></dt>
<dd><p>Controller for the scrollView.
</dd>
</dl>
<hr><!-- headerDoc=instp; uid=//apple_ref/occ/instp/JPImagePickerController/dataSource; name=JPImagePickerController::dataSource -->
<a name="//apple_ref/occ/instp/JPImagePickerController/dataSource"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="dataSource">dataSource</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>The data source for the picker view.
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre>@property (
<span class="param">nonatomic</span>,
<span class="param">retain</span>) <!-- a logicalPath="//apple_ref/occ/cl/id //apple_ref/occ/tdef/id //apple_ref/occ/tag/id //apple_ref/occ/econst/id //apple_ref/occ/struct/id //apple_ref/occ/clconst/id //apple_ref/occ/intf/id" --><span class="type">id</span><!-- /a -->&lt;<span class="template">JPImagePickerControllerDataSource</span>&gt; <!-- a logicalPath="//apple_ref/occ/econst/dataSource //apple_ref/occ/data/dataSource" --><span class="var">dataSource</span><!-- /a -->; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>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.
<!-- end discussion -->
<p></p><hr><!-- headerDoc=instp; uid=//apple_ref/occ/instp/JPImagePickerController/delegate; name=JPImagePickerController::delegate -->
<a name="//apple_ref/occ/instp/JPImagePickerController/delegate"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="delegate">delegate</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>The image picker's delegate object.
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre>@property (
<span class="param">nonatomic</span>,
<span class="param">retain</span>) <!-- a logicalPath="//apple_ref/occ/cl/id //apple_ref/occ/tdef/id //apple_ref/occ/tag/id //apple_ref/occ/econst/id //apple_ref/occ/struct/id //apple_ref/occ/clconst/id //apple_ref/occ/intf/id" --><span class="type">id</span><!-- /a -->&lt;<span class="template">JPImagePickerControllerDelegate</span>&gt; <!-- a logicalPath="//apple_ref/occ/econst/delegate //apple_ref/occ/data/delegate" --><span class="var">delegate</span><!-- /a -->; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>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.
<!-- end discussion -->
<p></p><hr><!-- headerDoc=instp; uid=//apple_ref/occ/instp/JPImagePickerController/imagePickerTitle; name=JPImagePickerController::imagePickerTitle -->
<a name="//apple_ref/occ/instp/JPImagePickerController/imagePickerTitle"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="imagePickerTitle">imagePickerTitle</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>The image picker title.
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre>@property (
<span class="param">nonatomic</span>,
<span class="param">retain</span>) <!-- a logicalPath="//apple_ref/occ/cl/NSString //apple_ref/occ/tdef/NSString //apple_ref/occ/tag/NSString //apple_ref/occ/econst/NSString //apple_ref/occ/struct/NSString //apple_ref/occ/clconst/NSString //apple_ref/occ/intf/NSString" --><span class="type">NSString</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//apple_ref/occ/econst/imagePickerTitle //apple_ref/occ/data/imagePickerTitle" --><span class="var">imagePickerTitle</span><!-- /a -->; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>You can set the title for the image overview here.
<!-- end discussion -->
<p></p><hr><!-- headerDoc=instp; uid=//apple_ref/occ/instp/JPImagePickerController/modalNavigationController; name=JPImagePickerController::modalNavigationController -->
<a name="//apple_ref/occ/instp/JPImagePickerController/modalNavigationController"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="modalNavigationController">modalNavigationController</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>The additional navigation controller.
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre>@property (
<span class="param">nonatomic</span>,
<span class="param">retain</span>) <!-- a logicalPath="//apple_ref/occ/cl/IBOutlet //apple_ref/occ/tdef/IBOutlet //apple_ref/occ/tag/IBOutlet //apple_ref/occ/econst/IBOutlet //apple_ref/occ/struct/IBOutlet //apple_ref/occ/clconst/IBOutlet //apple_ref/occ/intf/IBOutlet" --><span class="type">IBOutlet</span><!-- /a --> <!-- a logicalPath="//apple_ref/occ/cl/UINavigationController //apple_ref/occ/tdef/UINavigationController //apple_ref/occ/tag/UINavigationController //apple_ref/occ/econst/UINavigationController //apple_ref/occ/struct/UINavigationController //apple_ref/occ/clconst/UINavigationController //apple_ref/occ/intf/UINavigationController" --><span class="type">UINavigationController</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//apple_ref/occ/econst/modalNavigationController //apple_ref/occ/data/modalNavigationController" --><span class="var">modalNavigationController</span><!-- /a -->; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>We need it to be able to view a navigation when the user
picks a image.
<!-- end discussion -->
<p></p><hr><!-- headerDoc=instp; uid=//apple_ref/occ/instp/JPImagePickerController/originalStatusBarStyle; name=JPImagePickerController::originalStatusBarStyle -->
<a name="//apple_ref/occ/instp/JPImagePickerController/originalStatusBarStyle"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="originalStatusBarStyle">originalStatusBarStyle</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>Original StatusBarStyle at the beginning.
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre>@property (
<span class="param">nonatomic</span>,
<span class="param">readonly</span>) <!-- a logicalPath="//apple_ref/occ/cl/UIStatusBarStyle //apple_ref/occ/tdef/UIStatusBarStyle //apple_ref/occ/tag/UIStatusBarStyle //apple_ref/occ/econst/UIStatusBarStyle //apple_ref/occ/struct/UIStatusBarStyle //apple_ref/occ/clconst/UIStatusBarStyle //apple_ref/occ/intf/UIStatusBarStyle" --><span class="type">UIStatusBarStyle</span><!-- /a --> <!-- a logicalPath="//apple_ref/occ/econst/originalStatusBarStyle //apple_ref/occ/data/originalStatusBarStyle" --><span class="var">originalStatusBarStyle</span><!-- /a -->; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>This property saves the UIStatusBarStyle at the beginning, so that
we'll be able to change it back when we dismiss the image picker.
<!-- end discussion -->
<p></p><hr><!-- headerDoc=instp; uid=//apple_ref/occ/instp/JPImagePickerController/overviewController; name=JPImagePickerController::overviewController -->
<a name="//apple_ref/occ/instp/JPImagePickerController/overviewController"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="overviewController">overviewController</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>Controller for the scrollView.
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre>@property (
<span class="param">nonatomic</span>,
<span class="param">retain</span>) <!-- a logicalPath="//apple_ref/occ/cl/JPImagePickerOverviewController //apple_ref/occ/tdef/JPImagePickerOverviewController //apple_ref/occ/tag/JPImagePickerOverviewController //apple_ref/occ/econst/JPImagePickerOverviewController //apple_ref/occ/struct/JPImagePickerOverviewController //apple_ref/occ/clconst/JPImagePickerOverviewController //apple_ref/occ/intf/JPImagePickerOverviewController" --><span class="type">JPImagePickerOverviewController</span><!-- /a --> <span class="type">*</span><!-- a logicalPath="//apple_ref/occ/econst/overviewController //apple_ref/occ/data/overviewController" --><span class="var">overviewController</span><!-- /a -->; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>This controller holds the scrollView with all the buttons which
represent the images.
<!-- end discussion -->
<p></p><p>Last Updated: Saturday, November 14, 2009
</p></body></html>

View file

@ -0,0 +1,35 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/1998/REC-html40-19980424/loose.dtd">
<html><head>
<meta name="ROBOTS" content="NOINDEX" />
<title>Documentation for JPImagePickerController (JPImagePickerController.h)</title>
<meta http-equiv="Content-Type" content="text/html; charset=ascii" />
<meta name="generator" content="HeaderDoc" />
<meta name="xcode-display" content="render" />
<style type="text/css"><!--.keyword {background:#ffffff; color:#761550;}.template {background:#ffffff; color:#761550;}.number {background: #ffffff; color:#0000ff;}.function {background:#ffffff; color:#000000;}.string {background: #ffffff; color:#891315;}.preprocessor {background:#ffffff; color:#236e25}.comment {background:#ffffff; color:#236e25}.char {background: #ffffff; color:#0000ff;}.var {background:#ffffff; color:#000000;}.type {background:#ffffff; color:#761550;}.param {background:#ffffff; color:#000000;}a:link {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:active {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}h4 {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: tiny; font-weight: bold;}body {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: 10pt;}.list_indent { margin-left: 40px; }.declaration_indent { margin-left: 40px; }.param_indent { margin-left: 40px; }.group_indent { margin-left: 40px; }.group_desc_indent { margin-left: 20px; }.warning_indent { margin-left: 40px; }.important_indent { margin-left: 40px; }.hd_tocAccess { font-style: italic; font-size: 10px; font-weight: normal; color: #303030; }--></style></head>
<body bgcolor="#edf2f6" link="#000099" vlink="#660066"
leftmargin="0" topmargin="0" marginwidth="0"
marginheight="0">
<table width="100%" cellpadding=0 cellspacing=0 border=0><tr height=51 width="100%" bgcolor="#466C9B"><td width="100%">&nbsp;</td></tr><tr><td><br><table border="0" cellpadding="0" cellspacing="2" width="148">
<tr><td width="15">&nbsp;</td><td colspan="2"><font size="5" color="#330066"><b>Class:</b></font></td></tr>
<tr><td width="15">&nbsp;</td><td width="15">&nbsp;</td><td><b><font size="+1">JPImagePickerController</font></b></td></tr>
<tr><td></td><td colspan="2">
<h4><br><nobr><a href="index.html#top" target="doc">Introduction</a></nobr></h4>
<h4><a href="index.html#HeaderDoc_methods" target="doc">Methods</a></h4>
<h5 class='hd_tocAccess'>Instance Methods</h5>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font size="-1">-</font><a href="index.html#//apple_ref/occ/instm/JPImagePickerController/cancelPicking:" target="doc">cancelPicking:</a></nobr><br>
<h4><a href="index.html#HeaderDoc_props" target="doc">Properties</a></h4>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="index.html#//apple_ref/occ/instp/JPImagePickerController/dataSource" target="doc">dataSource</a></nobr><br>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="index.html#//apple_ref/occ/instp/JPImagePickerController/delegate" target="doc">delegate</a></nobr><br>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="index.html#//apple_ref/occ/instp/JPImagePickerController/imagePickerTitle" target="doc">imagePickerTitle</a></nobr><br>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="index.html#//apple_ref/occ/instp/JPImagePickerController/modalNavigationController" target="doc">modalNavigationController</a></nobr><br>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="index.html#//apple_ref/occ/instp/JPImagePickerController/originalStatusBarStyle" target="doc">originalStatusBarStyle</a></nobr><br>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="index.html#//apple_ref/occ/instp/JPImagePickerController/overviewController" target="doc">overviewController</a></nobr><br>
<br><h4>Other Reference</h4><hr>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../index.html" target="_top">Header</a></nobr><br>
<p><i>Updated: Saturday, November 14, 2009</i><p></td></tr>
</table><p>&nbsp;<p>
</td></tr></table>
</body></html>

View file

@ -0,0 +1,136 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/1998/REC-html40-19980424/loose.dtd">
<html><head>
<title>JPImagePickerControllerDataSource</title>
<meta http-equiv="Content-Type" content="text/html; charset=ascii" />
<meta name="generator" content="HeaderDoc" />
<meta name="xcode-display" content="render" />
<style><!--
#tocMenu {
display: block;
position:fixed;
top:0px;
left:0px;
width:210px;
height:100%;
background:transparent;
}
#bodyText {
margin-left: 210px;
}
--></style>
<script language="JavaScript" type="text/javascript"><!--
function hidetoc() {
var origURL = parent.document.URL;
var contentURL = origURL.substring(origURL.indexOf('?')+1, origURL.length);
if (contentURL.length == origURL.length) {
jumpPos = origURL.substring(origURL.indexOf('#')+1, origURL.length);
}
if (contentURL == "hidetoc") {
var toc = document.getElementById('tocMenu');
var body = document.getElementById('bodyText');
if (toc && body) {
toc.style.display = 'none';
body.style.marginLeft = '0px';
}
}
}
--></script>
<style type="text/css"><!--.keyword {background:#ffffff; color:#761550;}.template {background:#ffffff; color:#761550;}.number {background: #ffffff; color:#0000ff;}.function {background:#ffffff; color:#000000;}.string {background: #ffffff; color:#891315;}.preprocessor {background:#ffffff; color:#236e25}.comment {background:#ffffff; color:#236e25}.char {background: #ffffff; color:#0000ff;}.var {background:#ffffff; color:#000000;}.type {background:#ffffff; color:#761550;}.param {background:#ffffff; color:#000000;}a:link {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:active {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}h4 {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: tiny; font-weight: bold;}body {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: 10pt;}.list_indent { margin-left: 40px; }.declaration_indent { margin-left: 40px; }.param_indent { margin-left: 40px; }.group_indent { margin-left: 40px; }.group_desc_indent { margin-left: 20px; }.warning_indent { margin-left: 40px; }.important_indent { margin-left: 40px; }.hd_tocAccess { font-style: italic; font-size: 10px; font-weight: normal; color: #303030; }--></style></head><body bgcolor="#ffffff" onload="hidetoc();">
</div>
<!-- headerDoc=intf; uid=//apple_ref/occ/intf/JPImagePickerControllerDataSource; name=JPImagePickerControllerDataSource-->
<a name="//apple_ref/occ/intf/JPImagePickerControllerDataSource"></a><div id='tocMenu'>
<iframe id='toc_content' name='toc_content' SRC='toc.html' width='210' height='100%' align='left' frameborder='0'>This document set is best viewed in a browser that supports iFrames.</iframe>
</div>
<div id='bodyText'>
<a name="top"></a>
<hr><table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h1><a name="JPImagePickerControllerDataSource">JPImagePickerControllerDataSource</a></h1>
</td></tr></table><hr><p><!-- begin abstract --><p>The data source protocol for JPImagePickerController
<!-- end abstract --></p>
<p><b>Extends&nbsp;Protocol:</b> <!-- a logicalPath="//apple_ref/occ/intf/NSObject" -->NSObject<!-- /a --><br>
<b>Declared In:</b> <a href="../../index.html" target="_top">JPImagePickerController.h</a><br>
</p><div class='declaration_indent'>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>The JPImagePickerController asks this data source for all
data which it wants to display.
<!-- end discussion -->
<p></p><hr><br><a name="HeaderDoc_methods"></a>
<h2>Methods</h2>
<dl>
<dt><tt><a href="index.html#//apple_ref/occ/intfm/JPImagePickerControllerDataSource/imagePicker:imageForImageNumber:" target="_top">-imagePicker:imageForImageNumber:</a></tt></dt>
<dd><p>Asks the data source for a image to show in a preview.
</dd>
<dt><tt><a href="index.html#//apple_ref/occ/intfm/JPImagePickerControllerDataSource/imagePicker:thumbnailForImageNumber:" target="_top">-imagePicker:thumbnailForImageNumber:</a></tt></dt>
<dd><p>Asks the data source for a thumbnail to insert in a particular location
the image picker.
</dd>
<dt><tt><a href="index.html#//apple_ref/occ/intfm/JPImagePickerControllerDataSource/numberOfImagesInImagePicker:" target="_top">-numberOfImagesInImagePicker:</a></tt></dt>
<dd><p>Should return the number of images.
</dd>
</dl>
<hr><!-- headerDoc=intfm; uid=//apple_ref/occ/intfm/JPImagePickerControllerDataSource/imagePicker:imageForImageNumber:; name=JPImagePickerControllerDataSource::imagePicker:imageForImageNumber: -->
<a name="//apple_ref/occ/intfm/JPImagePickerControllerDataSource/imagePicker:imageForImageNumber:"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="imagePicker:imageForImageNumber:">imagePicker:imageForImageNumber:</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>Asks the data source for a image to show in a preview.
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre>- (<!-- a logicalPath="//apple_ref/occ/cl/UIImage //apple_ref/occ/tdef/UIImage //apple_ref/occ/tag/UIImage //apple_ref/occ/econst/UIImage //apple_ref/occ/struct/UIImage //apple_ref/occ/clconst/UIImage //apple_ref/occ/intf/UIImage" --><span class="type">UIImage</span><!-- /a --> <span class="type">*</span>)<!-- a logicalPath="//apple_ref/occ/instm/imagePicker //apple_ref/occ/clm/imagePicker //apple_ref/occ/intfcm/imagePicker //apple_ref/occ/intfm/imagePicker //apple_ref/occ/func/imagePicker //apple_ref/occ/ftmplt/imagePicker //apple_ref/occ/defn/imagePicker //apple_ref/occ/macro/imagePicker" --><span class="function">imagePicker</span><!-- /a -->:(<!-- a logicalPath="//apple_ref/occ/cl/JPImagePickerController //apple_ref/occ/tdef/JPImagePickerController //apple_ref/occ/tag/JPImagePickerController //apple_ref/occ/econst/JPImagePickerController //apple_ref/occ/struct/JPImagePickerController //apple_ref/occ/clconst/JPImagePickerController //apple_ref/occ/intf/JPImagePickerController" --><span class="type">JPImagePickerController</span><!-- /a --> <span class="type">*</span>)<span class="param">picker</span>
<!-- a logicalPath="//apple_ref/occ/instm/imageForImageNumber //apple_ref/occ/clm/imageForImageNumber //apple_ref/occ/intfcm/imageForImageNumber //apple_ref/occ/intfm/imageForImageNumber //apple_ref/occ/func/imageForImageNumber //apple_ref/occ/ftmplt/imageForImageNumber //apple_ref/occ/defn/imageForImageNumber //apple_ref/occ/macro/imageForImageNumber" --><span class="function">imageForImageNumber</span><!-- /a -->:(<!-- a logicalPath="//apple_ref/occ/cl/NSInteger //apple_ref/occ/tdef/NSInteger //apple_ref/occ/tag/NSInteger //apple_ref/occ/econst/NSInteger //apple_ref/occ/struct/NSInteger //apple_ref/occ/clconst/NSInteger //apple_ref/occ/intf/NSInteger" --><span class="type">NSInteger</span><!-- /a -->)<!-- a logicalPath="//apple_ref/occ/econst/imageNumber //apple_ref/occ/data/imageNumber" --><span class="var">imageNumber</span><!-- /a -->; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Parameters</font></h5>
<div class='param_indent'>
<dl>
<dt><code>picker</code></dt><dd><p>A picker-object requesting the image.</dd>
<dt><code>imageNumber</code></dt><dd><p>A image number locating the image in the picker.</dd>
</dl>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>This method should return a UIImage image for the preview at
the image number position. The image should have the width of kJPImagePickerControllerPreviewImageWidth
and height of kJPImagePickerControllerPreviewImageWidth. If it is not that size the
image picker will resize it so it fits.
<!-- end discussion -->
<p></p><hr><!-- headerDoc=intfm; uid=//apple_ref/occ/intfm/JPImagePickerControllerDataSource/imagePicker:thumbnailForImageNumber:; name=JPImagePickerControllerDataSource::imagePicker:thumbnailForImageNumber: -->
<a name="//apple_ref/occ/intfm/JPImagePickerControllerDataSource/imagePicker:thumbnailForImageNumber:"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="imagePicker:thumbnailForImageNumber:">imagePicker:thumbnailForImageNumber:</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>Asks the data source for a thumbnail to insert in a particular location
the image picker.
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre>- (<!-- a logicalPath="//apple_ref/occ/cl/UIImage //apple_ref/occ/tdef/UIImage //apple_ref/occ/tag/UIImage //apple_ref/occ/econst/UIImage //apple_ref/occ/struct/UIImage //apple_ref/occ/clconst/UIImage //apple_ref/occ/intf/UIImage" --><span class="type">UIImage</span><!-- /a --> <span class="type">*</span>)<!-- a logicalPath="//apple_ref/occ/instm/imagePicker //apple_ref/occ/clm/imagePicker //apple_ref/occ/intfcm/imagePicker //apple_ref/occ/intfm/imagePicker //apple_ref/occ/func/imagePicker //apple_ref/occ/ftmplt/imagePicker //apple_ref/occ/defn/imagePicker //apple_ref/occ/macro/imagePicker" --><span class="function">imagePicker</span><!-- /a -->:(<!-- a logicalPath="//apple_ref/occ/cl/JPImagePickerController //apple_ref/occ/tdef/JPImagePickerController //apple_ref/occ/tag/JPImagePickerController //apple_ref/occ/econst/JPImagePickerController //apple_ref/occ/struct/JPImagePickerController //apple_ref/occ/clconst/JPImagePickerController //apple_ref/occ/intf/JPImagePickerController" --><span class="type">JPImagePickerController</span><!-- /a --> <span class="type">*</span>)<span class="param">picker</span>
<!-- a logicalPath="//apple_ref/occ/instm/thumbnailForImageNumber //apple_ref/occ/clm/thumbnailForImageNumber //apple_ref/occ/intfcm/thumbnailForImageNumber //apple_ref/occ/intfm/thumbnailForImageNumber //apple_ref/occ/func/thumbnailForImageNumber //apple_ref/occ/ftmplt/thumbnailForImageNumber //apple_ref/occ/defn/thumbnailForImageNumber //apple_ref/occ/macro/thumbnailForImageNumber" --><span class="function">thumbnailForImageNumber</span><!-- /a -->:(<!-- a logicalPath="//apple_ref/occ/cl/NSInteger //apple_ref/occ/tdef/NSInteger //apple_ref/occ/tag/NSInteger //apple_ref/occ/econst/NSInteger //apple_ref/occ/struct/NSInteger //apple_ref/occ/clconst/NSInteger //apple_ref/occ/intf/NSInteger" --><span class="type">NSInteger</span><!-- /a -->)<!-- a logicalPath="//apple_ref/occ/econst/imageNumber //apple_ref/occ/data/imageNumber" --><span class="var">imageNumber</span><!-- /a -->; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Parameters</font></h5>
<div class='param_indent'>
<dl>
<dt><code>picker</code></dt><dd><p>A picker-object requesting the thumbnail.</dd>
<dt><code>imageNumber</code></dt><dd><p>A image number locating the image in the picker.</dd>
</dl>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>This method should return a UIImage thumbnail for a image at the
image number position. The image should have the width of kJPImagePickerControllerThumbnailWidth
and height of kJPImagePickerControllerThumbnailWidth. If it is not that size the
image picker will resize it so it fits.
<!-- end discussion -->
<p></p><hr><!-- headerDoc=intfm; uid=//apple_ref/occ/intfm/JPImagePickerControllerDataSource/numberOfImagesInImagePicker:; name=JPImagePickerControllerDataSource::numberOfImagesInImagePicker: -->
<a name="//apple_ref/occ/intfm/JPImagePickerControllerDataSource/numberOfImagesInImagePicker:"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="numberOfImagesInImagePicker:">numberOfImagesInImagePicker:</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>Should return the number of images.
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre>- (<!-- a logicalPath="//apple_ref/occ/cl/NSInteger //apple_ref/occ/tdef/NSInteger //apple_ref/occ/tag/NSInteger //apple_ref/occ/econst/NSInteger //apple_ref/occ/struct/NSInteger //apple_ref/occ/clconst/NSInteger //apple_ref/occ/intf/NSInteger" --><span class="type">NSInteger</span><!-- /a -->)<!-- a logicalPath="//apple_ref/occ/instm/numberOfImagesInImagePicker //apple_ref/occ/clm/numberOfImagesInImagePicker //apple_ref/occ/intfcm/numberOfImagesInImagePicker //apple_ref/occ/intfm/numberOfImagesInImagePicker //apple_ref/occ/func/numberOfImagesInImagePicker //apple_ref/occ/ftmplt/numberOfImagesInImagePicker //apple_ref/occ/defn/numberOfImagesInImagePicker //apple_ref/occ/macro/numberOfImagesInImagePicker" --><span class="function">numberOfImagesInImagePicker</span><!-- /a -->:(<!-- a logicalPath="//apple_ref/occ/cl/JPImagePickerController //apple_ref/occ/tdef/JPImagePickerController //apple_ref/occ/tag/JPImagePickerController //apple_ref/occ/econst/JPImagePickerController //apple_ref/occ/struct/JPImagePickerController //apple_ref/occ/clconst/JPImagePickerController //apple_ref/occ/intf/JPImagePickerController" --><span class="type">JPImagePickerController</span><!-- /a --> <span class="type">*</span>)<!-- a logicalPath="//apple_ref/occ/econst/picker //apple_ref/occ/data/picker" --><span class="var">picker</span><!-- /a -->; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Parameters</font></h5>
<div class='param_indent'>
<dl>
<dt><code>picker</code></dt><dd><p>The picker which called this method.</dd>
</dl>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>This method should return the number of images which the
picker should display.
<!-- end discussion -->
<p></p><p>Last Updated: Saturday, November 14, 2009
</p></body></html>

View file

@ -0,0 +1,29 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/1998/REC-html40-19980424/loose.dtd">
<html><head>
<meta name="ROBOTS" content="NOINDEX" />
<title>Documentation for JPImagePickerControllerDataSource (JPImagePickerController.h)</title>
<meta http-equiv="Content-Type" content="text/html; charset=ascii" />
<meta name="generator" content="HeaderDoc" />
<meta name="xcode-display" content="render" />
<style type="text/css"><!--.keyword {background:#ffffff; color:#761550;}.template {background:#ffffff; color:#761550;}.number {background: #ffffff; color:#0000ff;}.function {background:#ffffff; color:#000000;}.string {background: #ffffff; color:#891315;}.preprocessor {background:#ffffff; color:#236e25}.comment {background:#ffffff; color:#236e25}.char {background: #ffffff; color:#0000ff;}.var {background:#ffffff; color:#000000;}.type {background:#ffffff; color:#761550;}.param {background:#ffffff; color:#000000;}a:link {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:active {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}h4 {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: tiny; font-weight: bold;}body {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: 10pt;}.list_indent { margin-left: 40px; }.declaration_indent { margin-left: 40px; }.param_indent { margin-left: 40px; }.group_indent { margin-left: 40px; }.group_desc_indent { margin-left: 20px; }.warning_indent { margin-left: 40px; }.important_indent { margin-left: 40px; }.hd_tocAccess { font-style: italic; font-size: 10px; font-weight: normal; color: #303030; }--></style></head>
<body bgcolor="#edf2f6" link="#000099" vlink="#660066"
leftmargin="0" topmargin="0" marginwidth="0"
marginheight="0">
<table width="100%" cellpadding=0 cellspacing=0 border=0><tr height=51 width="100%" bgcolor="#466C9B"><td width="100%">&nbsp;</td></tr><tr><td><br><table border="0" cellpadding="0" cellspacing="2" width="148">
<tr><td width="15">&nbsp;</td><td colspan="2"><font size="5" color="#330066"><b>Protocol:</b></font></td></tr>
<tr><td width="15">&nbsp;</td><td width="15">&nbsp;</td><td><b><font size="+1">JPImagePickerControllerDataSource</font></b></td></tr>
<tr><td></td><td colspan="2">
<h4><br><nobr><a href="index.html#top" target="doc">Introduction</a></nobr></h4>
<h4><a href="index.html#HeaderDoc_methods" target="doc">Methods</a></h4>
<h5 class='hd_tocAccess'>Instance Methods</h5>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font size="-1">-</font><a href="index.html#//apple_ref/occ/intfm/JPImagePickerControllerDataSource/imagePicker:imageForImageNumber:" target="doc">imagePicker:&zwj;imageForImageNumber:&zwj;</a></nobr><br>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font size="-1">-</font><a href="index.html#//apple_ref/occ/intfm/JPImagePickerControllerDataSource/imagePicker:thumbnailForImageNumber:" target="doc">imagePicker:&zwj;thumbnailForImageNumber:&zwj;</a></nobr><br>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font size="-1">-</font><a href="index.html#//apple_ref/occ/intfm/JPImagePickerControllerDataSource/numberOfImagesInImagePicker:" target="doc">numberOfImagesInImagePicker:</a></nobr><br>
<br><h4>Other Reference</h4><hr>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../index.html" target="_top">Header</a></nobr><br>
</td></tr>
</table><p>&nbsp;<p>
</td></tr></table>
</body></html>

View file

@ -0,0 +1,108 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/1998/REC-html40-19980424/loose.dtd">
<html><head>
<title>JPImagePickerControllerDelegate</title>
<meta http-equiv="Content-Type" content="text/html; charset=ascii" />
<meta name="generator" content="HeaderDoc" />
<meta name="xcode-display" content="render" />
<style><!--
#tocMenu {
display: block;
position:fixed;
top:0px;
left:0px;
width:210px;
height:100%;
background:transparent;
}
#bodyText {
margin-left: 210px;
}
--></style>
<script language="JavaScript" type="text/javascript"><!--
function hidetoc() {
var origURL = parent.document.URL;
var contentURL = origURL.substring(origURL.indexOf('?')+1, origURL.length);
if (contentURL.length == origURL.length) {
jumpPos = origURL.substring(origURL.indexOf('#')+1, origURL.length);
}
if (contentURL == "hidetoc") {
var toc = document.getElementById('tocMenu');
var body = document.getElementById('bodyText');
if (toc && body) {
toc.style.display = 'none';
body.style.marginLeft = '0px';
}
}
}
--></script>
<style type="text/css"><!--.keyword {background:#ffffff; color:#761550;}.template {background:#ffffff; color:#761550;}.number {background: #ffffff; color:#0000ff;}.function {background:#ffffff; color:#000000;}.string {background: #ffffff; color:#891315;}.preprocessor {background:#ffffff; color:#236e25}.comment {background:#ffffff; color:#236e25}.char {background: #ffffff; color:#0000ff;}.var {background:#ffffff; color:#000000;}.type {background:#ffffff; color:#761550;}.param {background:#ffffff; color:#000000;}a:link {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:active {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}h4 {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: tiny; font-weight: bold;}body {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: 10pt;}.list_indent { margin-left: 40px; }.declaration_indent { margin-left: 40px; }.param_indent { margin-left: 40px; }.group_indent { margin-left: 40px; }.group_desc_indent { margin-left: 20px; }.warning_indent { margin-left: 40px; }.important_indent { margin-left: 40px; }.hd_tocAccess { font-style: italic; font-size: 10px; font-weight: normal; color: #303030; }--></style></head><body bgcolor="#ffffff" onload="hidetoc();">
</div>
<!-- headerDoc=intf; uid=//apple_ref/occ/intf/JPImagePickerControllerDelegate; name=JPImagePickerControllerDelegate-->
<a name="//apple_ref/occ/intf/JPImagePickerControllerDelegate"></a><div id='tocMenu'>
<iframe id='toc_content' name='toc_content' SRC='toc.html' width='210' height='100%' align='left' frameborder='0'>This document set is best viewed in a browser that supports iFrames.</iframe>
</div>
<div id='bodyText'>
<a name="top"></a>
<hr><table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h1><a name="JPImagePickerControllerDelegate">JPImagePickerControllerDelegate</a></h1>
</td></tr></table><hr><p><!-- begin abstract --><p>Delegate protocol for the JPImagePickerController
<!-- end abstract --></p>
<p><b>Extends&nbsp;Protocol:</b> <!-- a logicalPath="//apple_ref/occ/intf/NSObject" -->NSObject<!-- /a --><br>
<b>Declared In:</b> <a href="../../index.html" target="_top">JPImagePickerController.h</a><br>
</p><div class='declaration_indent'>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>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.
<!-- end discussion -->
<p></p><hr><br><a name="HeaderDoc_methods"></a>
<h2>Methods</h2>
<dl>
<dt><tt><a href="index.html#//apple_ref/occ/intfm/JPImagePickerControllerDelegate/imagePicker:didFinishPickingWithImageNumber:" target="_top">-imagePicker:didFinishPickingWithImageNumber:</a></tt></dt>
<dd><p>Called when the user picked a image.
</dd>
<dt><tt><a href="index.html#//apple_ref/occ/intfm/JPImagePickerControllerDelegate/imagePickerDidCancel:" target="_top">-imagePickerDidCancel:</a></tt></dt>
<dd><p>Called when picker did cancel
</dd>
</dl>
<hr><!-- headerDoc=intfm; uid=//apple_ref/occ/intfm/JPImagePickerControllerDelegate/imagePicker:didFinishPickingWithImageNumber:; name=JPImagePickerControllerDelegate::imagePicker:didFinishPickingWithImageNumber: -->
<a name="//apple_ref/occ/intfm/JPImagePickerControllerDelegate/imagePicker:didFinishPickingWithImageNumber:"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="imagePicker:didFinishPickingWithImageNumber:">imagePicker:didFinishPickingWithImageNumber:</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>Called when the user picked a image.
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre>- (<!-- a logicalPath="//apple_ref/occ/cl/void //apple_ref/occ/tdef/void //apple_ref/occ/tag/void //apple_ref/occ/econst/void //apple_ref/occ/struct/void //apple_ref/occ/clconst/void //apple_ref/occ/intf/void" --><span class="type">void</span><!-- /a -->)<!-- a logicalPath="//apple_ref/occ/instm/imagePicker //apple_ref/occ/clm/imagePicker //apple_ref/occ/intfcm/imagePicker //apple_ref/occ/intfm/imagePicker //apple_ref/occ/func/imagePicker //apple_ref/occ/ftmplt/imagePicker //apple_ref/occ/defn/imagePicker //apple_ref/occ/macro/imagePicker" --><span class="function">imagePicker</span><!-- /a -->:(<!-- a logicalPath="//apple_ref/occ/cl/JPImagePickerController //apple_ref/occ/tdef/JPImagePickerController //apple_ref/occ/tag/JPImagePickerController //apple_ref/occ/econst/JPImagePickerController //apple_ref/occ/struct/JPImagePickerController //apple_ref/occ/clconst/JPImagePickerController //apple_ref/occ/intf/JPImagePickerController" --><span class="type">JPImagePickerController</span><!-- /a --> <span class="type">*</span>)<span class="param">picker</span>
<!-- a logicalPath="//apple_ref/occ/instm/didFinishPickingWithImageNumber //apple_ref/occ/clm/didFinishPickingWithImageNumber //apple_ref/occ/intfcm/didFinishPickingWithImageNumber //apple_ref/occ/intfm/didFinishPickingWithImageNumber //apple_ref/occ/func/didFinishPickingWithImageNumber //apple_ref/occ/ftmplt/didFinishPickingWithImageNumber //apple_ref/occ/defn/didFinishPickingWithImageNumber //apple_ref/occ/macro/didFinishPickingWithImageNumber" --><span class="function">didFinishPickingWithImageNumber</span><!-- /a -->:(<!-- a logicalPath="//apple_ref/occ/cl/NSInteger //apple_ref/occ/tdef/NSInteger //apple_ref/occ/tag/NSInteger //apple_ref/occ/econst/NSInteger //apple_ref/occ/struct/NSInteger //apple_ref/occ/clconst/NSInteger //apple_ref/occ/intf/NSInteger" --><span class="type">NSInteger</span><!-- /a -->)<!-- a logicalPath="//apple_ref/occ/econst/imageNumber //apple_ref/occ/data/imageNumber" --><span class="var">imageNumber</span><!-- /a -->; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Parameters</font></h5>
<div class='param_indent'>
<dl>
<dt><code>picker</code></dt><dd><p>The picker which called this method.</dd>
<dt><code>imageNumber</code></dt><dd><p>The number which image the user picked.</dd>
</dl>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>This method is called when the user die finish picking.
The delegate is responsible to dismiss the picker here.
<!-- end discussion -->
<p></p><hr><!-- headerDoc=intfm; uid=//apple_ref/occ/intfm/JPImagePickerControllerDelegate/imagePickerDidCancel:; name=JPImagePickerControllerDelegate::imagePickerDidCancel: -->
<a name="//apple_ref/occ/intfm/JPImagePickerControllerDelegate/imagePickerDidCancel:"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="imagePickerDidCancel:">imagePickerDidCancel:</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>Called when picker did cancel
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre>- (<!-- a logicalPath="//apple_ref/occ/cl/void //apple_ref/occ/tdef/void //apple_ref/occ/tag/void //apple_ref/occ/econst/void //apple_ref/occ/struct/void //apple_ref/occ/clconst/void //apple_ref/occ/intf/void" --><span class="type">void</span><!-- /a -->)<!-- a logicalPath="//apple_ref/occ/instm/imagePickerDidCancel //apple_ref/occ/clm/imagePickerDidCancel //apple_ref/occ/intfcm/imagePickerDidCancel //apple_ref/occ/intfm/imagePickerDidCancel //apple_ref/occ/func/imagePickerDidCancel //apple_ref/occ/ftmplt/imagePickerDidCancel //apple_ref/occ/defn/imagePickerDidCancel //apple_ref/occ/macro/imagePickerDidCancel" --><span class="function">imagePickerDidCancel</span><!-- /a -->:(<!-- a logicalPath="//apple_ref/occ/cl/JPImagePickerController //apple_ref/occ/tdef/JPImagePickerController //apple_ref/occ/tag/JPImagePickerController //apple_ref/occ/econst/JPImagePickerController //apple_ref/occ/struct/JPImagePickerController //apple_ref/occ/clconst/JPImagePickerController //apple_ref/occ/intf/JPImagePickerController" --><span class="type">JPImagePickerController</span><!-- /a --> <span class="type">*</span>)<!-- a logicalPath="//apple_ref/occ/econst/picker //apple_ref/occ/data/picker" --><span class="var">picker</span><!-- /a -->; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Parameters</font></h5>
<div class='param_indent'>
<dl>
<dt><code>picker</code></dt><dd><p>The picker which called this method.</dd>
</dl>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Discussion</font>
</h5><!-- begin discussion --><p>This method is called when the user canceled picking.
The delegate is responsible to dismiss the picker here.
<!-- end discussion -->
<p></p><p>Last Updated: Saturday, November 14, 2009
</p></body></html>

View file

@ -0,0 +1,28 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/1998/REC-html40-19980424/loose.dtd">
<html><head>
<meta name="ROBOTS" content="NOINDEX" />
<title>Documentation for JPImagePickerControllerDelegate (JPImagePickerController.h)</title>
<meta http-equiv="Content-Type" content="text/html; charset=ascii" />
<meta name="generator" content="HeaderDoc" />
<meta name="xcode-display" content="render" />
<style type="text/css"><!--.keyword {background:#ffffff; color:#761550;}.template {background:#ffffff; color:#761550;}.number {background: #ffffff; color:#0000ff;}.function {background:#ffffff; color:#000000;}.string {background: #ffffff; color:#891315;}.preprocessor {background:#ffffff; color:#236e25}.comment {background:#ffffff; color:#236e25}.char {background: #ffffff; color:#0000ff;}.var {background:#ffffff; color:#000000;}.type {background:#ffffff; color:#761550;}.param {background:#ffffff; color:#000000;}a:link {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:active {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}h4 {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: tiny; font-weight: bold;}body {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: 10pt;}.list_indent { margin-left: 40px; }.declaration_indent { margin-left: 40px; }.param_indent { margin-left: 40px; }.group_indent { margin-left: 40px; }.group_desc_indent { margin-left: 20px; }.warning_indent { margin-left: 40px; }.important_indent { margin-left: 40px; }.hd_tocAccess { font-style: italic; font-size: 10px; font-weight: normal; color: #303030; }--></style></head>
<body bgcolor="#edf2f6" link="#000099" vlink="#660066"
leftmargin="0" topmargin="0" marginwidth="0"
marginheight="0">
<table width="100%" cellpadding=0 cellspacing=0 border=0><tr height=51 width="100%" bgcolor="#466C9B"><td width="100%">&nbsp;</td></tr><tr><td><br><table border="0" cellpadding="0" cellspacing="2" width="148">
<tr><td width="15">&nbsp;</td><td colspan="2"><font size="5" color="#330066"><b>Protocol:</b></font></td></tr>
<tr><td width="15">&nbsp;</td><td width="15">&nbsp;</td><td><b><font size="+1">JPImagePickerControllerDelegate</font></b></td></tr>
<tr><td></td><td colspan="2">
<h4><br><nobr><a href="index.html#top" target="doc">Introduction</a></nobr></h4>
<h4><a href="index.html#HeaderDoc_methods" target="doc">Methods</a></h4>
<h5 class='hd_tocAccess'>Instance Methods</h5>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font size="-1">-</font><a href="index.html#//apple_ref/occ/intfm/JPImagePickerControllerDelegate/imagePicker:didFinishPickingWithImageNumber:" target="doc">imagePicker:&zwj;didFinishPickingWithImageNumber:&zwj;</a></nobr><br>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font size="-1">-</font><a href="index.html#//apple_ref/occ/intfm/JPImagePickerControllerDelegate/imagePickerDidCancel:" target="doc">imagePickerDidCancel:</a></nobr><br>
<br><h4>Other Reference</h4><hr>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../index.html" target="_top">Header</a></nobr><br>
</td></tr>
</table><p>&nbsp;<p>
</td></tr></table>
</body></html>

View file

@ -0,0 +1,117 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/1998/REC-html40-19980424/loose.dtd">
<html><head>
<title>JPImagePickerController.h</title>
<meta http-equiv="Content-Type" content="text/html; charset=ascii" />
<meta name="generator" content="HeaderDoc" />
<meta name="xcode-display" content="render" />
<style><!--
#tocMenu {
display: block;
position:fixed;
top:0px;
left:0px;
width:210px;
height:100%;
background:transparent;
}
#bodyText {
margin-left: 210px;
}
--></style>
<script language="JavaScript" type="text/javascript"><!--
function hidetoc() {
var origURL = parent.document.URL;
var contentURL = origURL.substring(origURL.indexOf('?')+1, origURL.length);
if (contentURL.length == origURL.length) {
jumpPos = origURL.substring(origURL.indexOf('#')+1, origURL.length);
}
if (contentURL == "hidetoc") {
var toc = document.getElementById('tocMenu');
var body = document.getElementById('bodyText');
if (toc && body) {
toc.style.display = 'none';
body.style.marginLeft = '0px';
}
}
}
--></script>
<style type="text/css"><!--.keyword {background:#ffffff; color:#761550;}.template {background:#ffffff; color:#761550;}.number {background: #ffffff; color:#0000ff;}.function {background:#ffffff; color:#000000;}.string {background: #ffffff; color:#891315;}.preprocessor {background:#ffffff; color:#236e25}.comment {background:#ffffff; color:#236e25}.char {background: #ffffff; color:#0000ff;}.var {background:#ffffff; color:#000000;}.type {background:#ffffff; color:#761550;}.param {background:#ffffff; color:#000000;}a:link {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:active {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}h4 {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: tiny; font-weight: bold;}body {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: 10pt;}.list_indent { margin-left: 40px; }.declaration_indent { margin-left: 40px; }.param_indent { margin-left: 40px; }.group_indent { margin-left: 40px; }.group_desc_indent { margin-left: 20px; }.warning_indent { margin-left: 40px; }.important_indent { margin-left: 40px; }.hd_tocAccess { font-style: italic; font-size: 10px; font-weight: normal; color: #303030; }--></style></head><body bgcolor="#ffffff" onload="hidetoc();">
</div>
<!-- headerDoc=Header; uid=//apple_ref/doc/header/JPImagePickerController.h; name=JPImagePickerController.h -->
<a name="//apple_ref/doc/header/JPImagePickerController.h"></a>
<div id='tocMenu'>
<iframe id='toc_content' name='toc_content' SRC='toc.html' width='210' height='100%' align='left' frameborder='0'>This document set is best viewed in a browser that supports iFrames.</iframe>
</div>
<div id='bodyText'>
<a name="top"></a>
<hr><table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h1><a name="JPImagePickerController.h">JPImagePickerController.h</a></h1>
</td></tr></table><hr><p><!-- begin abstract -->Use the links in the table of contents to the left to access the documentation.<br>
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
</div>
<p></p><hr><br><a name="HeaderDoc_classes"></a>
<h2>Classes</h2>
<dl>
<dt><tt><a href="Classes/JPImagePickerController/index.html#//apple_ref/occ/cl/JPImagePickerController" target="_top">JPImagePickerController</a></tt></dt>
<dd><p>A image picker view controller.
</dd>
</dl>
<a name="HeaderDoc_protocols"></a>
<h2>Protocols</h2>
<dl>
<dt><tt><a href="Protocols/JPImagePickerControllerDataSource/index.html#//apple_ref/occ/intf/JPImagePickerControllerDataSource" target="_top">JPImagePickerControllerDataSource</a></tt></dt>
<dd><p>The data source protocol for JPImagePickerController
</dd>
<dt><tt><a href="Protocols/JPImagePickerControllerDelegate/index.html#//apple_ref/occ/intf/JPImagePickerControllerDelegate" target="_top">JPImagePickerControllerDelegate</a></tt></dt>
<dd><p>Delegate protocol for the JPImagePickerController
</dd>
</dl>
<hr><br><a name="HeaderDoc_enums"></a>
<h2>Enumerated Types</h2>
<dl>
<dt><tt><a href="index.html#//apple_ref/c/tag/JPImagePickerControllerPreviewImageSize" target="_top">JPImagePickerControllerPreviewImageSize</a></tt></dt>
<dd><p>Specifies the preview image width and height.
</dd>
<dt><tt><a href="index.html#//apple_ref/c/tag/JPImagePickerControllerThumbnailSize" target="_top">JPImagePickerControllerThumbnailSize</a></tt></dt>
<dd><p>Specifies the thumbnail width and height.
</dd>
</dl>
<hr><!-- headerDoc=tag; uid=//apple_ref/c/tag/JPImagePickerControllerPreviewImageSize; name=JPImagePickerControllerPreviewImageSize -->
<a name="//apple_ref/c/tag/JPImagePickerControllerPreviewImageSize"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="JPImagePickerControllerPreviewImageSize">JPImagePickerControllerPreviewImageSize</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>Specifies the preview image width and height.
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre><span class="keyword">enum</span> <!-- a logicalPath="//apple_ref/c/cl/JPImagePickerControllerPreviewImageSize //apple_ref/c/tdef/JPImagePickerControllerPreviewImageSize //apple_ref/c/tag/JPImagePickerControllerPreviewImageSize //apple_ref/c/econst/JPImagePickerControllerPreviewImageSize //apple_ref/c/struct/JPImagePickerControllerPreviewImageSize //apple_ref/c/clconst/JPImagePickerControllerPreviewImageSize //apple_ref/c/intf/JPImagePickerControllerPreviewImageSize" --><span class="type">JPImagePickerControllerPreviewImageSize</span><!-- /a --> {
<!-- a logicalPath="//apple_ref/c/econst/kJPImagePickerControllerPreviewImageSizeWidth //apple_ref/c/data/kJPImagePickerControllerPreviewImageSizeWidth" --><span class="var">kJPImagePickerControllerPreviewImageSizeWidth</span><!-- /a --> = <span class="number">320</span>,
<!-- a logicalPath="//apple_ref/c/econst/kJPImagePickerControllerPreviewImageSizeHeight //apple_ref/c/data/kJPImagePickerControllerPreviewImageSizeHeight" --><span class="var">kJPImagePickerControllerPreviewImageSizeHeight</span><!-- /a --> = <span class="number">420</span>
}; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Constants</font></h5>
<div class='param_indent'>
<dl>
<dt><a name="//apple_ref/c/econst/JPImagePickerControllerPreviewImageSize/kJPImagePickerControllerPreviewImageSizeWidth"><code>kJPImagePickerControllerPreviewImageSizeWidth</code></a></dt><dd><p>Preview image width 320 px.</dd>
<dt><a name="//apple_ref/c/econst/JPImagePickerControllerPreviewImageSize/kJPImagePickerControllerPreviewImageSizeHeight"><code>kJPImagePickerControllerPreviewImageSizeHeight</code></a></dt><dd><p>Preview image height 420 px.</dd>
</dl>
</div>
<p></p><hr><!-- headerDoc=tag; uid=//apple_ref/c/tag/JPImagePickerControllerThumbnailSize; name=JPImagePickerControllerThumbnailSize -->
<a name="//apple_ref/c/tag/JPImagePickerControllerThumbnailSize"></a>
<table border="0" cellpadding="2" cellspacing="2" width="300"><tr><td valign="top" height="12" colspan="5"><h3><a name="JPImagePickerControllerThumbnailSize">JPImagePickerControllerThumbnailSize</a></h3>
</td></tr></table><hr><p><!-- begin abstract --><p>Specifies the thumbnail width and height.
<!-- end abstract --></p>
<p></p><div class='declaration_indent'>
<pre><span class="keyword">enum</span> <!-- a logicalPath="//apple_ref/c/cl/JPImagePickerControllerThumbnailSize //apple_ref/c/tdef/JPImagePickerControllerThumbnailSize //apple_ref/c/tag/JPImagePickerControllerThumbnailSize //apple_ref/c/econst/JPImagePickerControllerThumbnailSize //apple_ref/c/struct/JPImagePickerControllerThumbnailSize //apple_ref/c/clconst/JPImagePickerControllerThumbnailSize //apple_ref/c/intf/JPImagePickerControllerThumbnailSize" --><span class="type">JPImagePickerControllerThumbnailSize</span><!-- /a --> {
<!-- a logicalPath="//apple_ref/c/econst/kJPImagePickerControllerThumbnailSizeWidth //apple_ref/c/data/kJPImagePickerControllerThumbnailSizeWidth" --><span class="var">kJPImagePickerControllerThumbnailSizeWidth</span><!-- /a --> = <span class="number">75</span>,
<!-- a logicalPath="//apple_ref/c/econst/kJPImagePickerControllerThumbnailSizeHeight //apple_ref/c/data/kJPImagePickerControllerThumbnailSizeHeight" --><span class="var">kJPImagePickerControllerThumbnailSizeHeight</span><!-- /a --> = <span class="number">75</span>
}; </pre>
</div>
<h5 class="tight"><font face="Lucida Grande,Helvetica,Arial">Constants</font></h5>
<div class='param_indent'>
<dl>
<dt><a name="//apple_ref/c/econst/JPImagePickerControllerThumbnailSize/kJPImagePickerControllerThumbnailSizeWidth"><code>kJPImagePickerControllerThumbnailSizeWidth</code></a></dt><dd><p>Thumbnail width 75 px.</dd>
<dt><a name="//apple_ref/c/econst/JPImagePickerControllerThumbnailSize/kJPImagePickerControllerThumbnailSizeHeight"><code>kJPImagePickerControllerThumbnailSizeHeight</code></a></dt><dd><p>Thumbnail height 75 px.</dd>
</dl>
</div>
<p></p><p>Last Updated: Saturday, November 14, 2009
</p></body></html>

View file

@ -0,0 +1,32 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/1998/REC-html40-19980424/loose.dtd">
<html><head>
<meta name="ROBOTS" content="NOINDEX" />
<title>Documentation for JPImagePickerController.h</title>
<meta http-equiv="Content-Type" content="text/html; charset=ascii" />
<meta name="generator" content="HeaderDoc" />
<meta name="xcode-display" content="render" />
<style type="text/css"><!--.keyword {background:#ffffff; color:#761550;}.template {background:#ffffff; color:#761550;}.number {background: #ffffff; color:#0000ff;}.function {background:#ffffff; color:#000000;}.string {background: #ffffff; color:#891315;}.preprocessor {background:#ffffff; color:#236e25}.comment {background:#ffffff; color:#236e25}.char {background: #ffffff; color:#0000ff;}.var {background:#ffffff; color:#000000;}.type {background:#ffffff; color:#761550;}.param {background:#ffffff; color:#000000;}a:link {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #0000ff;}a:visited:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:active {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}a:hover {text-decoration: underline; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: small; color: #ff6600;}h4 {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: tiny; font-weight: bold;}body {text-decoration: none; font-family: lucida grande, geneva, helvetica, arial, sans-serif; font-size: 10pt;}.list_indent { margin-left: 40px; }.declaration_indent { margin-left: 40px; }.param_indent { margin-left: 40px; }.group_indent { margin-left: 40px; }.group_desc_indent { margin-left: 20px; }.warning_indent { margin-left: 40px; }.important_indent { margin-left: 40px; }.hd_tocAccess { font-style: italic; font-size: 10px; font-weight: normal; color: #303030; }--></style></head>
<body bgcolor="#edf2f6" link="#000099" vlink="#660066"
leftmargin="0" topmargin="0" marginwidth="0"
marginheight="0">
<table width="100%" cellpadding=0 cellspacing=0 border=0><tr height=51 width="100%" bgcolor="#466C9B"><td width="100%">&nbsp;</td></tr><tr><td><br><table border="0" cellpadding="0" cellspacing="2" width="148">
<tr><td width="15">&nbsp;</td><td colspan="2"><font size="5" color="#330066"><b>Header:</b></font></td></tr>
<tr><td width="15">&nbsp;</td><td width="15">&nbsp;</td><td><b><font size="+1">JPImagePickerController.h</font></b></td></tr>
<tr><td></td><td colspan="2">
<h4><br><nobr><a href="index.html#top" target="doc">Introduction</a></nobr></h4>
<h4><a href="index.html#HeaderDoc_enums" target="doc">Enumerations
</a></h4>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="index.html#//apple_ref/c/tag/JPImagePickerControllerPreviewImageSize" target="doc">JPImagePickerControllerPreviewImageSize</a></nobr><br>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="index.html#//apple_ref/c/tag/JPImagePickerControllerThumbnailSize" target="doc">JPImagePickerControllerThumbnailSize</a></nobr><br>
<h4><a href="index.html#HeaderDoc_classes" target="doc">Classes</a></h4>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="Classes/JPImagePickerController/index.html#" target="doc">JPImagePickerController</a></nobr><br>
<h4><a href="index.html#HeaderDoc_protocols" target="doc">Protocols</a></h4>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="Protocols/JPImagePickerControllerDataSource/index.html#" target="doc">JPImagePickerControllerDataSource</a></nobr><br>
<nobr>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="Protocols/JPImagePickerControllerDelegate/index.html#" target="doc">JPImagePickerControllerDelegate</a></nobr><br>
</td></tr>
</table><p>&nbsp;<p>
</td></tr></table>
</body></html>

View file

@ -265,9 +265,6 @@
<string>29B97314FDCFA39411CA2CEA</string>
<string>080E96DDFE201D6D7F000001</string>
<string>1FBADE3510AAFAE400BAB679</string>
<string>29B97323FDCFA39411CA2CEA</string>
<string>1DF5F4DF0D08C38300B7A737</string>
<string>1F48C01910AEE8FB008B9064</string>
<string>1C37FABC05509CD000000102</string>
</array>
<key>PBXSmartGroupTreeModuleOutlineStateSelectionKey</key>
@ -329,7 +326,7 @@
<key>_historyCapacity</key>
<integer>0</integer>
<key>bookmark</key>
<string>1F48C14110AF32A9008B9064</string>
<string>1F48C15310AF3514008B9064</string>
<key>history</key>
<array>
<string>1FBADE7210AAFCF300BAB679</string>
@ -345,8 +342,6 @@
<string>1F48C04610AF031D008B9064</string>
<string>1F48C04910AF031D008B9064</string>
<string>1F48C07710AF0974008B9064</string>
<string>1F48C09410AF0F5A008B9064</string>
<string>1F48C09510AF0F5A008B9064</string>
<string>1F48C11F10AF2F84008B9064</string>
<string>1F48C12110AF2F84008B9064</string>
<string>1F48C12210AF2F84008B9064</string>
@ -355,10 +350,12 @@
<string>1F48C12610AF2F84008B9064</string>
<string>1F48C12710AF2F84008B9064</string>
<string>1F48C12910AF2F84008B9064</string>
<string>1F48C12B10AF2F84008B9064</string>
<string>1F48C13E10AF32A9008B9064</string>
<string>1F48C13F10AF32A9008B9064</string>
<string>1F48C14010AF32A9008B9064</string>
<string>1F48C14D10AF34B1008B9064</string>
<string>1F48C14E10AF34B1008B9064</string>
<string>1F48C14F10AF34B1008B9064</string>
<string>1F48C15010AF34B1008B9064</string>
<string>1F48C15210AF3514008B9064</string>
<string>1F48C14C10AF34B1008B9064</string>
</array>
</dict>
<key>SplitCount</key>
@ -556,11 +553,11 @@
<integer>5</integer>
<key>WindowOrderList</key>
<array>
<string>1C530D57069F1CE1000CFCEE</string>
<string>1C78EAAD065D492600B07095</string>
<string>1CD10A99069EF8BA00B06720</string>
<string>/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/JPImagePickerDemo.xcodeproj</string>
<string>1FBADE3B10AAFAF000BAB679</string>
<string>1C530D57069F1CE1000CFCEE</string>
<string>/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/JPImagePickerDemo.xcodeproj</string>
</array>
<key>WindowString</key>
<string>0 59 1280 719 0 0 1280 778 </string>
@ -655,7 +652,7 @@
<key>WindowToolGUID</key>
<string>1FBADE3B10AAFAF000BAB679</string>
<key>WindowToolIsVisible</key>
<true/>
<false/>
</dict>
<dict>
<key>FirstTimeWindowDisplayed</key>
@ -870,7 +867,7 @@
<key>WindowToolGUID</key>
<string>1C530D57069F1CE1000CFCEE</string>
<key>WindowToolIsVisible</key>
<false/>
<true/>
</dict>
<dict>
<key>Identifier</key>

View file

@ -25,7 +25,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 95";
rLen = 0;
rLoc = 6837;
rLoc = 6864;
rType = 0;
vrLen = 1444;
vrLoc = 1571;
@ -61,7 +61,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 95";
rLen = 0;
rLoc = 6837;
rLoc = 6864;
rType = 0;
vrLen = 1444;
vrLoc = 1571;
@ -189,7 +189,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 38";
rLen = 0;
rLoc = 4858;
rLoc = 4877;
rType = 0;
vrLen = 1312;
vrLoc = 320;
@ -199,7 +199,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 37";
rLen = 0;
rLoc = 4858;
rLoc = 4877;
rType = 0;
vrLen = 1273;
vrLoc = 320;
@ -225,7 +225,7 @@
fRef = 1FBADE4510AAFB4600BAB679 /* JPImagePickerController.m */;
name = "JPImagePickerController.m: 32";
rLen = 13;
rLoc = 890;
rLoc = 906;
rType = 0;
vrLen = 1596;
vrLoc = 339;
@ -251,7 +251,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 43";
rLen = 0;
rLoc = 4858;
rLoc = 4877;
rType = 0;
vrLen = 1376;
vrLoc = 618;
@ -321,7 +321,7 @@
fRef = 1FBADE4510AAFB4600BAB679 /* JPImagePickerController.m */;
name = "JPImagePickerController.m: 32";
rLen = 13;
rLoc = 890;
rLoc = 906;
rType = 0;
vrLen = 1510;
vrLoc = 0;
@ -331,7 +331,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 50";
rLen = 0;
rLoc = 4858;
rLoc = 4877;
rType = 0;
vrLen = 1376;
vrLoc = 618;
@ -440,7 +440,7 @@
fRef = 1FBADE4510AAFB4600BAB679 /* JPImagePickerController.m */;
name = "JPImagePickerController.m: 32";
rLen = 13;
rLoc = 890;
rLoc = 906;
rType = 0;
vrLen = 1510;
vrLoc = 0;
@ -466,7 +466,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 52";
rLen = 6;
rLoc = 4524;
rLoc = 4535;
rType = 0;
vrLen = 1246;
vrLoc = 798;
@ -476,7 +476,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 51";
rLen = 0;
rLoc = 4524;
rLoc = 4535;
rType = 0;
vrLen = 1290;
vrLoc = 409;
@ -574,7 +574,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 26";
rLen = 0;
rLoc = 4524;
rLoc = 4535;
rType = 0;
vrLen = 1239;
vrLoc = 230;
@ -584,7 +584,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 38";
rLen = 0;
rLoc = 4524;
rLoc = 4535;
rType = 0;
vrLen = 1116;
vrLoc = 98;
@ -594,7 +594,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 43";
rLen = 0;
rLoc = 4524;
rLoc = 4535;
rType = 0;
vrLen = 1191;
vrLoc = 518;
@ -604,7 +604,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 32";
rLen = 0;
rLoc = 4524;
rLoc = 4535;
rType = 0;
vrLen = 1257;
vrLoc = 518;
@ -614,7 +614,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 40";
rLen = 0;
rLoc = 4524;
rLoc = 4535;
rType = 0;
vrLen = 1411;
vrLoc = 518;
@ -624,7 +624,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 56";
rLen = 0;
rLoc = 4858;
rLoc = 4877;
rType = 0;
vrLen = 1584;
vrLoc = 1040;
@ -634,7 +634,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 37";
rLen = 0;
rLoc = 4858;
rLoc = 4877;
rType = 0;
vrLen = 1479;
vrLoc = 756;
@ -644,7 +644,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 24";
rLen = 0;
rLoc = 4518;
rLoc = 4529;
rType = 0;
vrLen = 1341;
vrLoc = 0;
@ -674,7 +674,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 24";
rLen = 0;
rLoc = 4518;
rLoc = 4529;
rType = 0;
vrLen = 1294;
vrLoc = 3;
@ -684,7 +684,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 149";
rLen = 0;
rLoc = 6837;
rLoc = 6864;
rType = 0;
vrLen = 1245;
vrLoc = 3747;
@ -694,7 +694,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 196";
rLen = 0;
rLoc = 6837;
rLoc = 6864;
rType = 0;
vrLen = 1707;
vrLoc = 5212;
@ -812,7 +812,7 @@
fRef = 1FBADE4510AAFB4600BAB679 /* JPImagePickerController.m */;
name = "JPImagePickerController.m: 32";
rLen = 13;
rLoc = 890;
rLoc = 906;
rType = 0;
vrLen = 1510;
vrLoc = 0;
@ -968,7 +968,7 @@
fRef = 1FBADE4510AAFB4600BAB679 /* JPImagePickerController.m */;
name = "JPImagePickerController.m: 32";
rLen = 13;
rLoc = 890;
rLoc = 906;
rType = 0;
vrLen = 1510;
vrLoc = 0;
@ -1050,7 +1050,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 124";
rLen = 0;
rLoc = 6837;
rLoc = 6864;
rType = 0;
vrLen = 1142;
vrLoc = 3364;
@ -1060,7 +1060,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 111";
rLen = 0;
rLoc = 6831;
rLoc = 6858;
rType = 0;
vrLen = 1231;
vrLoc = 3449;
@ -1080,7 +1080,7 @@
fRef = 1FBADE4510AAFB4600BAB679 /* JPImagePickerController.m */;
name = "JPImagePickerController.m: 32";
rLen = 13;
rLoc = 890;
rLoc = 906;
rType = 0;
vrLen = 1510;
vrLoc = 0;
@ -1144,6 +1144,86 @@
vrLen = 592;
vrLoc = 141;
};
1F48C14C10AF34B1008B9064 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 160";
rLen = 22;
rLoc = 5701;
rType = 0;
vrLen = 1525;
vrLoc = 5044;
};
1F48C14D10AF34B1008B9064 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 1FBADE4510AAFB4600BAB679 /* JPImagePickerController.m */;
name = "JPImagePickerController.m: 15";
rLen = 13;
rLoc = 331;
rType = 0;
vrLen = 1523;
vrLoc = 0;
};
1F48C14E10AF34B1008B9064 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 1FBADE4110AAFB4600BAB679 /* JPImagePickerOverviewController.h */;
name = "JPImagePickerOverviewController.h: 19";
rLen = 0;
rLoc = 507;
rType = 0;
vrLen = 1136;
vrLoc = 0;
};
1F48C14F10AF34B1008B9064 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 1FBADE4710AAFB4600BAB679 /* JPImagePickerOverviewController.m */;
name = "JPImagePickerOverviewController.m: 94";
rLen = 0;
rLoc = 3330;
rType = 0;
vrLen = 1278;
vrLoc = 2896;
};
1F48C15010AF34B1008B9064 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 1FBADE4010AAFB4600BAB679 /* JPImagePickerDetailController.h */;
name = "JPImagePickerDetailController.h: 11";
rLen = 0;
rLoc = 192;
rType = 0;
vrLen = 1097;
vrLoc = 0;
};
1F48C15110AF34B1008B9064 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 1FBADE4610AAFB4600BAB679 /* JPImagePickerDetailController.m */;
name = "JPImagePickerDetailController.m: 81";
rLen = 0;
rLoc = 2536;
rType = 0;
vrLen = 1307;
vrLoc = 1748;
};
1F48C15210AF3514008B9064 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 1FBADE4610AAFB4600BAB679 /* JPImagePickerDetailController.m */;
name = "JPImagePickerDetailController.m: 81";
rLen = 0;
rLoc = 2536;
rType = 0;
vrLen = 1132;
vrLoc = 0;
};
1F48C15310AF3514008B9064 /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 123";
rLen = 0;
rLoc = 4351;
rType = 0;
vrLen = 1339;
vrLoc = 4075;
};
1F545A7810AC573F006D143F /* PBXTextBookmark */ = {
isa = PBXTextBookmark;
fRef = 1F545A7910AC573F006D143F /* UIAccelerometer.h */;
@ -1281,7 +1361,7 @@
fRef = 1FBADE4510AAFB4600BAB679 /* JPImagePickerController.m */;
name = "JPImagePickerController.m: 55";
rLen = 0;
rLoc = 1875;
rLoc = 1891;
rType = 0;
vrLen = 1082;
vrLoc = 1979;
@ -1291,7 +1371,7 @@
fRef = 1FBADE4710AAFB4600BAB679 /* JPImagePickerOverviewController.m */;
name = "JPImagePickerOverviewController.m: 101";
rLen = 0;
rLoc = 3435;
rLoc = 3443;
rType = 0;
vrLen = 1295;
vrLoc = 2717;
@ -1351,7 +1431,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 95";
rLen = 0;
rLoc = 6837;
rLoc = 6864;
rType = 0;
vrLen = 1439;
vrLoc = 1576;
@ -1361,7 +1441,7 @@
fRef = 1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */;
name = "JPImagePickerController.h: 95";
rLen = 0;
rLoc = 6837;
rLoc = 6864;
rType = 0;
vrLen = 1443;
vrLoc = 1572;
@ -1430,23 +1510,23 @@
};
1FBADE3D10AAFB4600BAB679 /* JPImagePickerController.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {924, 2910}}";
sepNavSelRange = "{898, 0}";
sepNavVisRange = "{3, 1331}";
sepNavIntBoundsRect = "{{0, 0}, {924, 2850}}";
sepNavSelRange = "{4351, 0}";
sepNavVisRange = "{4075, 1339}";
};
};
1FBADE4010AAFB4600BAB679 /* JPImagePickerDetailController.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {924, 616}}";
sepNavIntBoundsRect = "{{0, 0}, {924, 593}}";
sepNavSelRange = "{192, 0}";
sepNavVisRange = "{0, 1097}";
};
};
1FBADE4110AAFB4600BAB679 /* JPImagePickerOverviewController.h */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {797, 540}}";
sepNavSelRange = "{333, 0}";
sepNavVisRange = "{141, 592}";
sepNavIntBoundsRect = "{{0, 0}, {924, 593}}";
sepNavSelRange = "{507, 0}";
sepNavVisRange = "{0, 1136}";
};
};
1FBADE4210AAFB4600BAB679 /* UIImageResizing.h */ = {
@ -1459,22 +1539,22 @@
1FBADE4510AAFB4600BAB679 /* JPImagePickerController.m */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1146, 1455}}";
sepNavSelRange = "{162, 36}";
sepNavVisRange = "{0, 588}";
sepNavSelRange = "{331, 13}";
sepNavVisRange = "{0, 1523}";
};
};
1FBADE4610AAFB4600BAB679 /* JPImagePickerDetailController.m */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1048, 1530}}";
sepNavSelRange = "{1839, 0}";
sepNavVisRange = "{1535, 840}";
sepNavIntBoundsRect = "{{0, 0}, {1083, 1560}}";
sepNavSelRange = "{2536, 0}";
sepNavVisRange = "{0, 1132}";
};
};
1FBADE4710AAFB4600BAB679 /* JPImagePickerOverviewController.m */ = {
uiCtxt = {
sepNavIntBoundsRect = "{{0, 0}, {1118, 1980}}";
sepNavSelRange = "{1498, 0}";
sepNavVisRange = "{3849, 347}";
sepNavIntBoundsRect = "{{0, 0}, {1118, 1935}}";
sepNavSelRange = "{3330, 0}";
sepNavVisRange = "{2896, 1278}";
};
};
1FBADE4810AAFB4600BAB679 /* UIImageResizing.m */ = {
@ -1699,6 +1779,14 @@
1F48C14310AF32AC008B9064 /* PBXTextBookmark */ = 1F48C14310AF32AC008B9064 /* PBXTextBookmark */;
1F48C14410AF32AC008B9064 /* XCBuildMessageTextBookmark */ = 1F48C14410AF32AC008B9064 /* XCBuildMessageTextBookmark */;
1F48C14510AF32AC008B9064 /* PBXTextBookmark */ = 1F48C14510AF32AC008B9064 /* PBXTextBookmark */;
1F48C14C10AF34B1008B9064 /* PBXTextBookmark */ = 1F48C14C10AF34B1008B9064 /* PBXTextBookmark */;
1F48C14D10AF34B1008B9064 /* PBXTextBookmark */ = 1F48C14D10AF34B1008B9064 /* PBXTextBookmark */;
1F48C14E10AF34B1008B9064 /* PBXTextBookmark */ = 1F48C14E10AF34B1008B9064 /* PBXTextBookmark */;
1F48C14F10AF34B1008B9064 /* PBXTextBookmark */ = 1F48C14F10AF34B1008B9064 /* PBXTextBookmark */;
1F48C15010AF34B1008B9064 /* PBXTextBookmark */ = 1F48C15010AF34B1008B9064 /* PBXTextBookmark */;
1F48C15110AF34B1008B9064 /* PBXTextBookmark */ = 1F48C15110AF34B1008B9064 /* PBXTextBookmark */;
1F48C15210AF3514008B9064 /* PBXTextBookmark */ = 1F48C15210AF3514008B9064 /* PBXTextBookmark */;
1F48C15310AF3514008B9064 /* PBXTextBookmark */ = 1F48C15310AF3514008B9064 /* PBXTextBookmark */;
1F545A7810AC573F006D143F = 1F545A7810AC573F006D143F /* PBXTextBookmark */;
1F545A7A10AC573F006D143F = 1F545A7A10AC573F006D143F /* PBXTextBookmark */;
1F545A7C10AC573F006D143F = 1F545A7C10AC573F006D143F /* PBXTextBookmark */;

View file

@ -1,13 +1,13 @@
a0f8243d338e21fb4810ace9d90e8d6f d5c4fd76dc79b86487cc859c33800440 ffffffffffffffffffffffffffffffff 14276 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/UIImageResizing.o
a0f8243d7933959b4810ace9d90e8642 0754afa3c0accb63678bffea93731839 ffffffffffffffffffffffffffffffff 47116 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerOverviewController.o
a0f8243d33c9791d4810ace9d90e949a 89dae7856ca707c22195dbc7255b4dae ffffffffffffffffffffffffffffffff 43272 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDetailController.o
a0f8243d797269cb4810ace9d90e80ee 7e64d59fd4cf5847d13de36310971dae ffffffffffffffffffffffffffffffff 44788 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerController.o
a0f8243d7933ead14810ace9d90e8aab 2e088e8d5b9515dcc3163b1e82180b49 ffffffffffffffffffffffffffffffff 46256 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o
a0f8243d797091544810ace9d90e8bdb 8fcd25d94343fda27d715f561b1e374e ffffffffffffffffffffffffffffffff 40120 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemoAppDelegate.o
a0f8243d7974d2894810ace9d90e9489 8a9a17d8a0b5740af4ccd4e777415008 ffffffffffffffffffffffffffffffff 6008 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/main.o
2efb7e6761f8d32d9109357e51bc1231 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
2efb7e6761fa14979109357e51bc15b1 dbd4a60a3512253eec96800ce34b8407 ffffffffffffffffffffffffffffffff 612 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
ae89f87e65841b6412545e94a3108d68 39082bf423d1817a775b00ad85dd0dfd ffffffffffffffffffffffffffffffff 46872 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
ae89f87e6586dcde12545e94a3108ae8 39082bf423d1817a775b00ad85dd0dfd ffffffffffffffffffffffffffffffff 46888 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
a0f8243d7933a56b4810ace9d90e864a 0754afa3c0accb63678bffea93731839 ffffffffffffffffffffffffffffffff 47124 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerOverviewController.o
a0f8243d33c956034810ace9d90e94e2 89dae7856ca707c22195dbc7255b4dae ffffffffffffffffffffffffffffffff 43284 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDetailController.o
a0f8243d7970b6064810ace9d90e876e 7e64d59fd4cf5847d13de36310971dae ffffffffffffffffffffffffffffffff 44844 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerController.o
a0f8243d338e21fb4810ace9d90e8d6f d5c4fd76dc79b86487cc859c33800440 ffffffffffffffffffffffffffffffff 14276 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/UIImageResizing.o
a0f8243d7933ead14810ace9d90e8aab 2e088e8d5b9515dcc3163b1e82180b49 ffffffffffffffffffffffffffffffff 46248 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o
a0f8243d797096cd4810ace9d90e8bab 8fcd25d94343fda27d715f561b1e374e ffffffffffffffffffffffffffffffff 40120 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemoAppDelegate.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
00000000000000000000000000000000 2fc19d973cf8db068564c4161cee6acd ffffffffffffffffffffffffffffffff 5298 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/t4.png
00000000000000000000000000000000 d79ae969bbd7cb82dc41194ca6224a4a ffffffffffffffffffffffffffffffff 4556 /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/t3.png

View file

@ -1,7 +1,7 @@
TJPImagePickerDemo
v7
r0
t279917299.964430
t279917744.778475
cCheck dependencies
cProcessInfoPlistFile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/Info.plist JPImagePickerDemo-Info.plist
cCompileXIB /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/MainWindow.xib
@ -65,16 +65,16 @@ t1253952071
s6649
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerController.h
c000000004AFEFB020000000000001AB5
t1258224386
s6837
c000000004AFEFC9B0000000000001AC5
t1258224795
s6853
i<UIKit/UIKit.h>
i"JPImagePickerOverviewController.h"
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerController.m
c000000004AFC24AA0000000000000BF5
t1258038442
s3061
c000000004AFEFCFE0000000000000C05
t1258224894
s3077
i"JPImagePickerController.h"
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerControllerDataSource.h
@ -113,9 +113,9 @@ i"JPImagePickerOverviewController.h"
i"UIImageResizing.h"
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDetailController.m
c000000004AFED5AB0000000000000BE7
t1258214827
s3047
c000000004AFEFD2C0000000000000BEF
t1258224940
s3055
i"JPImagePickerDetailController.h"
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDetailController.xib
@ -133,9 +133,9 @@ i"JPImagePickerDetailController.h"
i"UIImageResizing.h"
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m
c000000004AFECDE50000000000001064
t1258212837
s4196
c000000004AFEFD15000000000000106C
t1258224917
s4204
i"JPImagePickerOverviewController.h"
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerOverviewController.xib
@ -187,11 +187,11 @@ t1257950277
s20092
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
t1258224424
t1258224944
s612
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM
t1258224424
t1258224944
s102
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/Info.plist
@ -199,8 +199,8 @@ t1258212863
s610
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
t1258224424
s46872
t1258224944
s46888
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDetailController.nib
t1258212864
@ -259,8 +259,8 @@ t1258212864
s5298
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerController.o
t1258224424
s44788
t1258224944
s44844
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemo.LinkFileList
c000000004AFECDFF0000000000000509
@ -268,20 +268,20 @@ t1258212863
s1289
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemoAppDelegate.o
t1258224424
t1258224881
s40120
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDetailController.o
t1258224424
s43272
t1258224944
s43284
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerOverviewController.o
t1258224424
s47116
t1258224944
s47124
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o
t1258224424
s46256
t1258224881
s46248
N/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/UIImageResizing.o
t1258212866
@ -639,11 +639,11 @@ s909
CCheck dependencies
r0
lSLF07#2@18"Check dependencies279917299#279917300#0(0"0(0#1#0"4300885448#0"0#
lSLF07#2@18"Check dependencies279917744#279917744#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
s279917224.390493
e279917224.518800
s279917744.354382
e279917744.691433
r1
xCompileC
xbuild/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerController.o
@ -652,7 +652,7 @@ xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@105"Compile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerController.m279917224#279917224#0(0"0(0#0#97"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerController.m4300885448#2380" 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/JPImagePickerController.m -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerController.o 0#
lSLF07#2@105"Compile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerController.m279917744#279917744#0(0"0(0#0#97"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerController.m4300885448#2380" 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/JPImagePickerController.m -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerController.o 0#
CCompileC build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerController.o /Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerController.m normal i386 objective-c com.apple.compilers.gcc.4_2
s279641788.933521
@ -668,8 +668,8 @@ xcom.apple.compilers.gcc.4_2
lSLF07#2@81"Compile /Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerController.m279641788#279641789#0(0"0(0#0#73"/Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerController.m4300885448#2116" 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/JPImagePickerController.m -o /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerController.o 0#
CCompileC build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemoAppDelegate.o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDemoAppDelegate.m normal i386 objective-c com.apple.compilers.gcc.4_2
s279917224.297850
e279917224.390377
s279917681.487464
e279917681.577139
r1
xCompileC
xbuild/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemoAppDelegate.o
@ -678,7 +678,7 @@ xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@110"Compile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDemoAppDelegate.m279917224#279917224#0(0"0(0#0#102"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDemoAppDelegate.m4300885448#2390" 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/JPImagePickerDemoAppDelegate.m -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemoAppDelegate.o 0#
lSLF07#2@110"Compile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDemoAppDelegate.m279917681#279917681#0(0"0(0#0#102"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDemoAppDelegate.m4300885448#2390" 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/JPImagePickerDemoAppDelegate.m -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemoAppDelegate.o 0#
CCompileC build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemoAppDelegate.o /Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerDemoAppDelegate.m normal i386 objective-c com.apple.compilers.gcc.4_2
s279642243.098670
@ -694,8 +694,8 @@ xcom.apple.compilers.gcc.4_2
lSLF07#2@86"Compile /Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerDemoAppDelegate.m279642243#279642243#0(0"0(0#0#78"/Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerDemoAppDelegate.m4300885448#2126" 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/JPImagePickerDemoAppDelegate.m -o /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDemoAppDelegate.o 0#
CCompileC build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDetailController.o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDetailController.m normal i386 objective-c com.apple.compilers.gcc.4_2
s279917224.432278
e279917224.527528
s279917744.355882
e279917744.602788
r1
xCompileC
xbuild/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDetailController.o
@ -704,7 +704,7 @@ xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@111"Compile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDetailController.m279917224#279917224#0(0"0(0#0#103"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDetailController.m4300885448#2392" 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/JPImagePickerDetailController.m -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDetailController.o 0#
lSLF07#2@111"Compile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDetailController.m279917744#279917744#0(0"0(0#0#103"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerDetailController.m4300885448#2392" 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/JPImagePickerDetailController.m -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDetailController.o 0#
CCompileC build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDetailController.o /Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerDetailController.m normal i386 objective-c com.apple.compilers.gcc.4_2
s279641788.981874
@ -720,8 +720,8 @@ xcom.apple.compilers.gcc.4_2
lSLF07#2@87"Compile /Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerDetailController.m279641788#279641789#0(0"0(0#0#79"/Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerDetailController.m4300885448#2128" 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/JPImagePickerDetailController.m -o /Users/jeena/Projects/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerDetailController.o 0#
CCompileC build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerOverviewController.o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m normal i386 objective-c com.apple.compilers.gcc.4_2
s279917224.518917
e279917224.625168
s279917744.602896
e279917744.729537
r1
xCompileC
xbuild/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerOverviewController.o
@ -730,7 +730,7 @@ xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@113"Compile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m279917224#279917224#0(0"0(0#0#105"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m4300885448#2396" 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/JPImagePickerOverviewController.m -o /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/JPImagePickerOverviewController.o 0#
lSLF07#2@113"Compile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m279917744#279917744#0(0"0(0#0#105"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m4300885448#2396" 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/JPImagePickerOverviewController.m -o /Users/jeena/Projects/JPImagePickerController/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/JPImagePickerOverviewController.o /Users/jeena/Projects/JPImagePickerDemo/Classes/JPImagePickerOverviewController.m normal i386 objective-c com.apple.compilers.gcc.4_2
s279641789.045456
@ -746,8 +746,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#
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
s279917224.328930
e279917224.432170
s279917681.494344
e279917681.598365
r1
xCompileC
xbuild/JPImagePickerDemo.build/Debug-iphonesimulator/JPImagePickerDemo.build/Objects-normal/i386/RootViewController.o
@ -756,7 +756,7 @@ xnormal
xi386
xobjective-c
xcom.apple.compilers.gcc.4_2
lSLF07#2@100"Compile /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/Classes/RootViewController.m279917224#279917224#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.m279917681#279917681#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
s279643084.482617
@ -969,13 +969,13 @@ xt4.png
lSLF07#2@11"Copy t4.png279905664#279905664#0(0"0(0#0#70"/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/t4.png4300885448#535" 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/Library/PrivateFrameworks/DevToolsCore.framework/Resources/pbxcp -exclude .DS_Store -exclude CVS -exclude .svn -resolve-src-symlinks /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/t4.png /Users/jeena/Projects/JPImagePickerController/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
s279917224.745693
e279917224.773070
s279917744.753771
e279917744.775049
r1
xGenerateDSYMFile
x/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app.dSYM
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/JPImagePickerDemo279917224#279917224#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/JPImagePickerDemo279917744#279917744#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
s279643084.642782
@ -987,14 +987,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#
CLd /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo normal i386
s279917224.625270
e279917224.745584
s279917744.729745
e279917744.753655
r1
xLd
x/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo
xnormal
xi386
lSLF07#2@136"Link /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app/JPImagePickerDemo279917224#279917224#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/JPImagePickerDemo279917744#279917744#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
s279643084.618182
@ -1051,12 +1051,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#
CTouch /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
s279917224.773173
e279917224.797824
s279917744.775282
e279917744.778290
r1
xTouch
x/Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app
lSLF07#2@119"Touch /Users/jeena/Projects/JPImagePickerController/JPImagePickerDemo/build/Debug-iphonesimulator/JPImagePickerDemo.app279917224#279917224#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.app279917744#279917744#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
s279643084.664072