Skip to content

Commit

Permalink
Merge pull request hyperoslo#61 from hyperoslo/improve/README-again
Browse files Browse the repository at this point in the history
Improve the README.
  • Loading branch information
zenangst committed Nov 23, 2015
2 parents ef1fa46 + 5a88643 commit b68e954
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

## Description

<img src="https://github.com/hyperoslo/ImagePicker/blob/master/Resources/ImagePickerLogo.png" alt="ImagePicker Icon" align="right" />
**ImagePicker** is an all-in-one camera solution for your iOS app. It let's your users select images from the library and take pictures at the same time. As a developer you get notified of all the user interactions and get the beautiful UI for free, out of the box, it's just that simple.

**ImagePicker** has been optimized to give a great user experience, it passes around referenced images instead of the image itself which makes it less memory consuming. This is what makes it smooth as butter.
Expand All @@ -28,6 +29,19 @@ func doneButtonDidPress(images: [UIImage])
func cancelButtonDidPress()
```

### Optional bonus

##### Configuration

Configure text, colors and fonts by just overriding the static variables in the ImagePicker [configuration](https://github.com/hyperoslo/ImagePicker/blob/master/Source/Configuration.swift) struct. As an example:

```swift
Configuration.doneButtonTitle = "Finish"
Configuration.noImagesTitle = "Sorry! There are no images here!"
```

##### Resolve assets

As said before, **ImagePicker** works with referenced images, that is really powerful because it lets you download the asset and choose the size you want. If you want to change the default implementation, just add a variable in your controller.

```swift
Expand Down
Binary file added Resources/ImagePickerIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b68e954

Please sign in to comment.