We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I followed your steps:
-(RNFrostedSidebar *) sideBar { if (!_sideBar) { _indexSet = [NSMutableIndexSet indexSetWithIndex:1]; _images = @[[UIImage imageNamed:@"fixing_tools"], [UIImage imageNamed:@"red_cross"], [UIImage imageNamed:@"settings"], ]; _colors = @[[UIColor greenColor], [UIColor whiteColor], [UIColor yellowColor] ]; _sideBar = [[RNFrostedSidebar alloc] initWithImages:_images selectedIndices:self.indexSet borderColors:_colors]; _sideBar.delegate = self; } return _sideBar; }
-(void)sidebar:(RNFrostedSidebar *)sidebar didTapItemAtIndex:(NSUInteger)index { [[[WFAppDelegate sharedDelegate] window] setRootViewController:[self.controllers objectAtIndex:index]]; } -(void)sidebar:(RNFrostedSidebar *)sidebar didEnable:(BOOL)itemEnabled itemAtIndex:(NSUInteger)index { if (itemEnabled) { [self.indexSet addIndex:index]; } else { [self.indexSet removeIndex:index]; } }
But nothing happens.
The text was updated successfully, but these errors were encountered:
A similar setup is animating in a production dev env (iOS 7.1 + XCode 5.1.1)
Got all the right frameworks, esp. QuartzCore?
Sorry, something went wrong.
No branches or pull requests
I followed your steps:
But nothing happens.
The text was updated successfully, but these errors were encountered: