diff --git a/JPImagePickerDemo/Documentation/Classes/JPImagePickerController/index.html b/JPImagePickerDemo/Documentation/Classes/JPImagePickerController/index.html deleted file mode 100644 index 46064ac..0000000 --- a/JPImagePickerDemo/Documentation/Classes/JPImagePickerController/index.html +++ /dev/null @@ -1,188 +0,0 @@ - -
-JPImagePickerController- |
A image picker view controller. -
-Superclass: UIViewController
-Declared In: JPImagePickerController.h
-
A class which represents a image picker controller like apples UIImagePickerController -but lets you use a external dataSource for the images. - -
cancelPicking:- |
- (void)cancelPicking:(id)sender;-
sender
The button which sends the action.
The data source for the picker view. -
The image picker's delegate object. -
The image picker title. -
The additional navigation controller. -
Original StatusBarStyle at the beginning. -
Controller for the scrollView. -
dataSource- |
The data source for the picker view. -
-@property ( - nonatomic, - retain) id<JPImagePickerControllerDataSource> dataSource;-
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. - -
delegate- |
The image picker's delegate object. -
-@property ( - nonatomic, - retain) id<JPImagePickerControllerDelegate> delegate;-
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. - -
imagePickerTitle- |
The image picker title. -
-@property ( - nonatomic, - retain) NSString *imagePickerTitle;-
You can set the title for the image overview here. - -
modalNavigationController- |
The additional navigation controller. -
-@property ( - nonatomic, - retain) IBOutlet UINavigationController *modalNavigationController;-
We need it to be able to view a navigation when the user -picks a image. - -
originalStatusBarStyle- |
Original StatusBarStyle at the beginning. -
-@property ( - nonatomic, - readonly) UIStatusBarStyle originalStatusBarStyle;-
This property saves the UIStatusBarStyle at the beginning, so that -we'll be able to change it back when we dismiss the image picker. - -
overviewController- |
Controller for the scrollView. -
-@property ( - nonatomic, - retain) JPImagePickerOverviewController *overviewController;-
This controller holds the scrollView with all the buttons which -represent the images. - -
Last Updated: Saturday, November 14, 2009 -
diff --git a/JPImagePickerDemo/Documentation/Classes/JPImagePickerController/toc.html b/JPImagePickerDemo/Documentation/Classes/JPImagePickerController/toc.html deleted file mode 100644 index 32da805..0000000 --- a/JPImagePickerDemo/Documentation/Classes/JPImagePickerController/toc.html +++ /dev/null @@ -1,35 +0,0 @@ - - - -
- |
JPImagePickerControllerDataSource- |
The data source protocol for JPImagePickerController -
-Extends Protocol: NSObject
-Declared In: JPImagePickerController.h
-
The JPImagePickerController asks this data source for all -data which it wants to display. - -
Asks the data source for a image to show in a preview. -
Asks the data source for a thumbnail to insert in a particular location -the image picker. -
Should return the number of images. -
imagePicker:imageForImageNumber:- |
Asks the data source for a image to show in a preview. -
-- (UIImage *)imagePicker:(JPImagePickerController *)picker - imageForImageNumber:(NSInteger)imageNumber;-
picker
A picker-object requesting the image.
imageNumber
A image number locating the image in the picker.
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. - -
imagePicker:thumbnailForImageNumber:- |
Asks the data source for a thumbnail to insert in a particular location -the image picker. -
-- (UIImage *)imagePicker:(JPImagePickerController *)picker - thumbnailForImageNumber:(NSInteger)imageNumber;-
picker
A picker-object requesting the thumbnail.
imageNumber
A image number locating the image in the picker.
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. - -
numberOfImagesInImagePicker:- |
Should return the number of images. -
-- (NSInteger)numberOfImagesInImagePicker:(JPImagePickerController *)picker;-
picker
The picker which called this method.
This method should return the number of images which the -picker should display. - -
Last Updated: Saturday, November 14, 2009 -
diff --git a/JPImagePickerDemo/Documentation/Protocols/JPImagePickerControllerDataSource/toc.html b/JPImagePickerDemo/Documentation/Protocols/JPImagePickerControllerDataSource/toc.html deleted file mode 100644 index c6fe482..0000000 --- a/JPImagePickerDemo/Documentation/Protocols/JPImagePickerControllerDataSource/toc.html +++ /dev/null @@ -1,29 +0,0 @@ - - - -
- |
JPImagePickerControllerDelegate- |
Delegate protocol for the JPImagePickerController -
-Extends Protocol: NSObject
-Declared In: JPImagePickerController.h
-
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. - -
Called when the user picked a image. -
Called when picker did cancel -
imagePicker:didFinishPickingWithImageNumber:- |
Called when the user picked a image. -
-- (void)imagePicker:(JPImagePickerController *)picker - didFinishPickingWithImageNumber:(NSInteger)imageNumber;-
picker
The picker which called this method.
imageNumber
The number which image the user picked.
This method is called when the user die finish picking. -The delegate is responsible to dismiss the picker here. - -
imagePickerDidCancel:- |
Called when picker did cancel -
-- (void)imagePickerDidCancel:(JPImagePickerController *)picker;-
picker
The picker which called this method.
This method is called when the user canceled picking. -The delegate is responsible to dismiss the picker here. - -
Last Updated: Saturday, November 14, 2009 -
diff --git a/JPImagePickerDemo/Documentation/Protocols/JPImagePickerControllerDelegate/toc.html b/JPImagePickerDemo/Documentation/Protocols/JPImagePickerControllerDelegate/toc.html deleted file mode 100644 index 58af0e2..0000000 --- a/JPImagePickerDemo/Documentation/Protocols/JPImagePickerControllerDelegate/toc.html +++ /dev/null @@ -1,28 +0,0 @@ - - - -
- |
JPImagePickerController.h- |
Use the links in the table of contents to the left to access the documentation.
-
A image picker view controller. -
The data source protocol for JPImagePickerController -
Delegate protocol for the JPImagePickerController -
Specifies the preview image width and height. -
Specifies the thumbnail width and height. -
JPImagePickerControllerPreviewImageSize- |
Specifies the preview image width and height. -
-enum JPImagePickerControllerPreviewImageSize { - kJPImagePickerControllerPreviewImageSizeWidth = 320, - kJPImagePickerControllerPreviewImageSizeHeight = 420 -};-
kJPImagePickerControllerPreviewImageSizeWidth
Preview image width 320 px.
kJPImagePickerControllerPreviewImageSizeHeight
Preview image height 420 px.
JPImagePickerControllerThumbnailSize- |
Specifies the thumbnail width and height. -
-enum JPImagePickerControllerThumbnailSize { - kJPImagePickerControllerThumbnailSizeWidth = 75, - kJPImagePickerControllerThumbnailSizeHeight = 75 -};-
kJPImagePickerControllerThumbnailSizeWidth
Thumbnail width 75 px.
kJPImagePickerControllerThumbnailSizeHeight
Thumbnail height 75 px.
Last Updated: Saturday, November 14, 2009 -
diff --git a/JPImagePickerDemo/Documentation/toc.html b/JPImagePickerDemo/Documentation/toc.html deleted file mode 100644 index e4d034f..0000000 --- a/JPImagePickerDemo/Documentation/toc.html +++ /dev/null @@ -1,32 +0,0 @@ - - - -
- |