1、实现一次pop多层。
NSArray *controllers = self.navigationController.viewControllers;
NSInteger count = [controllers count] - 3;
UIViewController *ctrl = (UIViewController *)[controllers objectAtIndex:count];
[self.navigationController popToViewController:ctrl animated:YES];2、横向菜单的实现(如 网易新闻)
实现思路,首先是一个ScrollView,然后,在这上边添加多个Button。
3. 按钮按下背景发光的属性
button.showsTouchWhenHighlighted = YES;

被折叠的 条评论
为什么被折叠?



