标签:style class blog code color for
自定义了TabBarController 之后必须实现以下方法才能避免报错 -(void)viewWillAppear:(BOOL)animated { [self.selectedViewController beginAppearanceTransition: YES animated: animated]; } -(void) viewDidAppear:(BOOL)animated { [self.selectedViewController endAppearanceTransition]; } -(void) viewWillDisappear:(BOOL)animated { [self.selectedViewController beginAppearanceTransition: NO animated: animated]; } -(void) viewDidDisappear:(BOOL)animated { [self.selectedViewController endAppearanceTransition]; }
自定义TabBarController报错 - Unbalanced calls to begin/end appearance transitions for <>,布布扣,bubuko.com
自定义TabBarController报错 - Unbalanced calls to begin/end appearance transitions for <>
标签:style class blog code color for
原文地址:http://www.cnblogs.com/hw140430/p/3807635.html