problem about ecslidingviewcontroller-Collection of common programming errors


  • 80leaves
    ios ecslidingviewcontroller
    I’m trying to rebuild the Basic Example and whenever I start my application I end up with following error message:* Terminating app due to uncaught exception ‘NSUnknownKeyException’, reason: ‘[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key topViewControllerStoryboardId.’ * First throw call stack:I just don’t know where to keep looking.

  • XCode Monkey
    iphone ios objective-c ecslidingviewcontroller
    I have a little problem with my app.I am using ECSlidingViewController.Here’s a overview:On the ViewController.h:#import <UIKit/UIKit.h> #import <QuartzCore/QuartzCore.h> #import “ECSlidingViewController.h” #import “MenuViewController.h”@interface ViewController : UIViewController@property (strong, nonatomic) UIButton *menuBtn;@endOn the ViewController.m:#import “ViewController.h”@interface ViewController ()@end@implementation ViewController @synthesize menuBtn;- (void)viewDidLoad {[

  • Marcel Marino
    ios uiviewcontroller storyboard ecslidingviewcontroller
    I am using a storyboard to switch between views. Pretty simple, until I try to add ECSlidingViewController.If I add the above slide menu to the first view I call using this:self.topViewController = [self.storyboard instantiateViewControllerWithIdentifier:@”Main”];If I set @”Main” to @”Speakers”, the view loads just fine. I get the slide menu and everything. @”Main” also loads just fine.However, if I load @”Main” first like in the code above, then switch views to the one I’ve designated “Speakers

  • Pinturikkio
    iphone ios objective-c uinavigationcontroller ecslidingviewcontroller
    In my app I’ve a navigation Controller that is connected to another viewController (root controller). In my project I’ve imported ECSlidingViewController.h and .m. In the viewController that will be used as a right-side menu (listViewController.h), I’ve imported ECSlidingViewController.h and in viewDidLoad I did this:[super viewDidLoad];self.peekLeftAmount = 40.0f;[self.slidingViewController setAnchorLeftPeekAmount:self.peekLeftAmount];self.slidingViewController.underRightWidthLayout = ECVariabl

Web site is in building