UILabel与MMDrawer无法正常工作

时间:2016-07-12 07:24:32

标签: ios uianimation mmdrawercontroller

我正在使用我使用过MMDrawer的应用。我用UIVIew和UIButtons制作了自定义标签。所有UIButton都在它下面有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。

0 个答案:

没有答案