TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
Depends on: | |
SDWebImage | < 3.0.0 |
MBProgressHUD | >= 0 |
Note: This is a fork from mwaterfall/MWPhotoBrowser. This fork makes modifications so that the interface of the photo browser is allowed to be customized (navigation bar color/image, toolbar color/image, background color).
New methods added are:
- (void)changeNavigationBarTintColor:(UIColor *)color;
- (void)changeNavigationBarBackgroundImage:(UIImage *)image;
- (void)changeBackgroundColor:(UIColor *)color;
- (void)changeToolbarTintColor:(UIColor *)color;
- (void)changeToolbarBackgroundImage:(UIImage *)image;
Usage:
MWPhotoBrowser *browser = [[MWPhotoBrowser alloc] initWithDelegate:self];
browser.displayActionButton = YES;
[browser changeNavigationBarTintColor:[UIColor redColor]];
[browser changeToolbarTintColor:[UIColor redColor]];
[self.navigationController pushViewController:browser animated:YES];
MWPhotoBrowser is an implementation of a photo browser similar to the native Photos app in iOS. It can display one or more images by providing either UIImage
objects, file paths to images on the device, or URLs to images online. The photo browser handles the downloading and caching of photos from the web seamlessly. Photos can be zoomed and panned, and optional (customisable) captions can be displayed. Works on iOS 3.2+. All strings are localisable so they can be used in apps that support multiple languages.
MWPhotoBrowser is designed to be presented within a navigation controller. Simply set the delegate (which must conform to MWPhotoBrowserDelegate
) and implement the 2 required delegate methods to provide the photo browser with the data in the form of MWPhoto
objects. You can create an MWPhoto
object by providing a UIImage
object, a file path to a physical image file, or a URL to an image online.
MWPhoto
objects handle caching, file management, downloading of web images, and various optimisations for you. If however you would like to use your own data model to represent photos you can simply ensure your model conforms to the MWPhoto
protocol. You can then handle the management of caching, downloads, etc, yourself. More information on this can be found in MWPhotoProtocol.h
.
See the code snippet below for an example of how to implement the photo browser. There is also a simple demo app within the project.
// Create array of `MWPhoto` objects
self.photos = [NSMutableArray array];
[photos addObject:[MWPhoto photoWithFilePath:[[NSBundle mainBundle] pathForResource:@"photo2l" ofType:@"jpg"]]];
[photos addObject:[MWPhoto photoWithURL:[NSURL URLWithString:@"http://farm4.static.flickr.com/3629/3339128908_7aecabc34b.jpg"]]];
[photos addObject:[MWPhoto photoWithURL:[NSURL URLWithString:@"http://farm4.static.flickr.com/3590/3329114220_5fbc5bc92b.jpg"]]];
// Create & present browser
MWPhotoBrowser *browser = [[MWPhotoBrowser alloc] initWithDelegate:self];
// Set options
browser.wantsFullScreenLayout = YES; // Decide if you want the photo browser full screen, i.e. whether the status bar is affected (defaults to YES)
browser.displayActionButton = YES; // Show action button to save, copy or email photos (defaults to NO)
[browser setInitialPageIndex:1]; // Example: allows second image to be presented first
// Present
[self.navigationController pushViewController:browser animated:YES];
Then respond to the required delegate methods:
- (NSUInteger)numberOfPhotosInPhotoBrowser:(MWPhotoBrowser *)photoBrowser {
return self.photos.count;
}
- (MWPhoto *)photoBrowser:(MWPhotoBrowser *)photoBrowser photoAtIndex:(NSUInteger)index {
if (index < self.photos.count)
return [self.photos objectAtIndex:index];
return nil;
}
You can present the browser modally simply by wrapping it in a new navigation controller and presenting that. The demo app allows you to toggle between the two presentation types.
If you don't want to view the photo browser full screen (for example if you are using view controller containment in iOS 5) then set the photo browser's wantsFullScreenLayout
property to NO
. This will mean the status bar will not be affected by the photo browser.
Photo captions can be displayed simply by setting the caption
property on specific photos:
MWPhoto *photo = [MWPhoto photoWithFilePath:[[NSBundle mainBundle] pathForResource:@"photo2l" ofType:@"jpg"]];
photo.caption = @"Campervan";
No caption will be displayed if the caption property is not set.
By default, the caption is a simple black transparent view with a label displaying the photo's caption in white. If you want to implement your own caption view, follow these steps:
MWPhoto
for your photos so you can store more data than a simple caption string.MWCaptionView
and override -setupCaption
and -sizeThatFits:
(and any other UIView methods you see fit) to layout your own view and set it's size. More information on this can be found in MWCaptionView.h
-photoBrowser:captionViewForPhotoAtIndex:
MWPhotoBrowser delegate method (shown below).Example delegate method for custom caption view:
- (MWCaptionView *)photoBrowser:(MWPhotoBrowser *)photoBrowser captionViewForPhotoAtIndex:(NSUInteger)index {
MWPhoto *photo = [self.photos objectAtIndex:index];
MyMWCaptionViewSubclass *captionView = [[MyMWCaptionViewSubclass alloc] initWithPhoto:photo];
return [captionView autorelease];
}
git://github.com/mwaterfall/MWPhotoBrowser.git
and store the code wherever you wish.libMWPhotoBrowser.a
.MWPhotoBrowser.bundle
from the MWPhotoBrowser project into that list. This ensures your project will include the required graphics for the photo browser to work correctly.MessageUI.framework
and ImageIO.framework
to "Linked Frameworks and Libraries".You should now be able to include MWPhotoBrowser.h
into your project and start using it.
Setting these things up in Xcode 4 can be a bit tricky so if you run into any problems you may wish to read through a few bits of information:
Another method is to simply add the files to your Xcode project, copying them to your project's directory if required. Ensure that all the code within MWPhotoBrowser/Classes
, MWPhotoBrowser/Libraries
and the MWPhotoBrowser.bundle
is included in your project.
If your project uses ARC then you will have to disable ARC for each of the files in MWPhotoBrowser. Here's how you do it: http://stackoverflow.com/a/6658549/106244
Nothing outstanding
MWPhotoBrowser very gratefully makes use of 2 other fantastic open source projects:
Demo photos kindly provided by Oliver Waters (http://twitter.com/oliverwaters).
Copyright (c) 2010 Michael Waterfall
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.