Skip to content

Commit

Permalink
Fixed Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
StuFF mc committed Dec 29, 2012
1 parent 6d608ef commit 034af21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.markdown
Expand Up @@ -47,7 +47,7 @@ Example 2: Storyboards
---
1. Create a subclass of `JASidePanelController`. In this example we call it `mySidePanelController`.
2. In the Storyboard designate the root view's owner as `mySiePanelController`.
2. In the Storyboard designate the root view's owner as `mySidePanelController`.
3. Make sure to `#import "JASidePanelController.h"` in `mySidePanelController.h`.
4. Add more views to your Storyboard, and give them identifiers "leftViewController", "centerViewController" and "rightViewController". Note that in the new XCode the identifier is called "Storyboard ID" and can be found in the Identity inspector (in older versions the identifier is found in the Attributes inspector).
5. Add a method `awakeFromNib` to `mySidePanelController.m` with the following code:
Expand All @@ -58,7 +58,7 @@ Example 2: Storyboards
{
[self setLeftPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"leftViewController"]];
[self setCenterPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"centerViewController"]];
[self setRightPanel:[self.storyboard instantiateViewControllerWIthIdentifier:@"rightViewController"]];
[self setRightPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"rightViewController"]];
}
```
Expand Down

0 comments on commit 034af21

Please sign in to comment.