I want to create side menu like in Facebook iPhone app in iOS 6 using Xcode and Storyboards. How can I make it?
Thanks.
We wrote MMDrawerController to solve this problem, but I havent thought about using it in a storyboard (simply because storyboards aren't maintainable for large teams).
https://github.com/mutualmobile/MMDrawerController
Get custom component like Inferis/ViewDeck and implement containment programmatically:
@interface YourViewController : IIViewDeckController
@end
implementation:
@implementation YourViewController
-(void)awakeFromNib
{
UIStoryboard* storyboard = [UIStoryboard storyboardWithName:@"Storyboard" bundle:nil];
self.centerController = [storyboard instantiateViewControllerWithIdentifier:@"CenterViewController"];
self.leftController = [storyboard instantiateViewControllerWithIdentifier:@"LeftViewController"];
}
@end
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With