ipup / PPRevealSideViewController

A new container controller to easily push views on side like Path or Facebook
www.ipup.pro
Other
821 stars 194 forks source link

Property 'revealSideViewController' not found #101

Closed taofang0418 closed 9 years ago

taofang0418 commented 10 years ago

HI,

Sorry for this stupid issue, I create a new project using your library, it works well in the side table view. But all view controllers, i cannot get the property of revealSideViewController. I cannot use self.revealSideViewController to trigger the function.

I put following code in the AppDelegate.m

FeedViewController *feedView = [[FeedViewController alloc] init];

UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:feedView];

_revealSideViewController = [[PPRevealSideViewController alloc] initWithRootViewController:nav];

_revealSideViewController.delegate = self;

self.window.rootViewController = _revealSideViewController;

PP_RELEASE(feedView);
PP_RELEASE(nav);
taofang0418 commented 10 years ago

sorry, can you close it, i found out the issue.