我有使用 MMDrawer 的应用程序。我用 UIVIew 和 UIButtons 制作了自定义标签。所有的 UIButtons 在它下面都有 UILabel 用于显示你是哪个视图控制器。
当我单击自定义标签栏的 UIButton 时,UILabel 不会随动画移动。
这是我的代码
UIStoryboard *storyBoard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
SettingViewController *Help = [storyBoard instantiateViewControllerWithIdentifier:@"SettingViewController"];
UINavigationController *detailNav = [[UINavigationController alloc]initWithRootViewController:Help];
AppDELEGATE.drawer.centerViewController = detailNav;
[UIView animateWithDuration:0.5 animations:^{
CGRect frame = self.lblSplit.frame;
frame.origin.x = sender.frame.origin.x - 10;
self.lblSplit.frame = frame;
}];
lblSplit 是 UIButton 单击时我想要移动的 UILabel。