RDVTabBarController icon indicating copy to clipboard operation
RDVTabBarController copied to clipboard

Highly customizable tabBar and tabBarController for iOS

Results 36 RDVTabBarController issues
Sort by recently updated
recently updated
newest added

### Description [Description of the issue] ### Steps to Reproduce [Steps or usage snippet reproducing the issue] 1. [First Step] 2. [Second Step] 3. [and so on...] ``` ``` **Expected...

### Description I found that use roundf() to calculate rect in RDVTabBarItem is not perfect. Image and title have a different center point in the horizontal. I use floor() to...

### Summary ### Other Information

I am using RDVTabBarControler How to adjust UI on iPhoneXR safe area layout guides. Xcode 10.1 Swift 4.2 Please help Thanks

### Description [Description of the issue] ### Steps to Reproduce [Steps or usage snippet reproducing the issue] 1. [First Step] 2. [Second Step] 3. [and so on...] ``` ``` **Expected...

以下源代码不够严谨: [viewController willMoveToParentViewController:nil]; [viewController.view removeFromSuperview]; [viewController removeFromParentViewController]; 如果需要重新setViewControllers时,会移除之前的控制器,如果之前的控制器view没有加载,移除时会先走viewDidLoad, 然后才移除,若viewDidLoad里面同步任务较多,造成卡顿等问题。 可改为: [viewController willMoveToParentViewController:nil]; if (viewController.isViewLoaded) {//判断view是否已加载 [viewController.view removeFromSuperview]; } [viewController removeFromParentViewController];

### tabBarHeight is fixed to 58.f so my code [self.tabBar setHeight:49 + bottomHeight] mean nothing ### Steps to Reproduce CGSize viewSize = self.view.bounds.size; CGFloat tabBarStartingY = viewSize.height; CGFloat contentViewHeight =...

Looking forward to your reply!!! The final result is as follows: `- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. self.window = [[UIWindow alloc] initWithFrame:[UIScreen...

### Description [Description of the issue] ### Steps to Reproduce [Steps or usage snippet reproducing the issue] 1. [First Step] 2. [Second Step] 3. [and so on...] ``` ``` **Expected...

//adjust the height of contentView ;prevent a event that reset the selectedIndex when the tabBarHidden is yes