Skip to content

Commit

Permalink
iOS7 Caputures
Browse files Browse the repository at this point in the history
  • Loading branch information
Joan Lluch committed May 3, 2014
1 parent ae158bc commit 5f24993
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -42,8 +42,8 @@ A number of changes have been made on version 2.0 that may break your existing p

## Examples

![Dynamic](https://raw.github.com/John-Lluch/SWRevealViewController/master/SWRevealViewController3.png)
![Dynamic](https://raw.github.com/John-Lluch/SWRevealViewController/master/SWRevealViewController.png)
![Dynamic](https://raw.github.com/John-Lluch/SWRevealViewController/master/RevealControllerProject.png)
![Dynamic](https://raw.github.com/John-Lluch/SWRevealViewController/master/RevealControllerProject3_b_.png)

## Requirements

Expand Down
Expand Up @@ -163,9 +163,17 @@ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
SWRevealViewController *childRevealController =
[[SWRevealViewController alloc] initWithRearViewController:rearViewController frontViewController:frontViewController];


#define NoRevealOverdraw true
#if NoRevealOverdraw
childRevealController.rearViewRevealWidth = 60;
childRevealController.rearViewRevealOverdraw = 120;
childRevealController.bounceBackOnOverdraw = NO;
childRevealController.stableDragOnOverdraw = YES;
#else
childRevealController.rearViewRevealWidth = 200;
#endif
childRevealController.rearViewRevealDisplacement = 0;

[childRevealController setFrontViewPosition:FrontViewPositionRight animated:NO];
frontController = childRevealController;
break;
Expand Down
Binary file added RevealControllerProject.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added RevealControllerProject2_a.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added RevealControllerProject3_a.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added RevealControllerProject3_b.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added RevealControllerProject3_c.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed SWRevealViewController.png
Binary file not shown.
7 changes: 6 additions & 1 deletion SWRevealViewController/SWRevealViewController.h
Expand Up @@ -28,7 +28,12 @@
RELEASE NOTES
Version 2.0.0 (Current Version)
Version 2.0.1 (Current Version)
- Fix: draggableBorderWidth now correctly handles the cases where one of the rear controllers is not provided
- Fix: the shadow related properties are now granted at any time after view load, not just after initialization.
Version 2.0.0
- Dropped support for iOS6 and earlier. This version will only work on iOS7
Expand Down
Binary file removed SWRevealViewController2a.png
Binary file not shown.
Binary file removed SWRevealViewController2b.png
Binary file not shown.
Binary file removed SWRevealViewController3.png
Binary file not shown.
Binary file removed SWRevealViewControllerIPhone.png
Binary file not shown.

0 comments on commit 5f24993

Please sign in to comment.