uitabbarcontroller Questions
2
After upgrading my project to iOS 18, I’ve encountered an issue where the UITabBarController no longer displays the tab bar items or icons properly. The same code has been working flawlessly across...
Evidence asked 10/9 at 16:29
2
I am trying to present a UIViewController within a UISheetPresentationController to have a permanent modal that sits below my UITabBarController exactly like how Apple has shown it possible in the ...
Pomcroy asked 22/7, 2022 at 19:32
2
In my initial view controller, I have have a UITabbarController as a child view controller.
I want to have UITabbarController to display its UITabbar with traitCollection having horizontalSizeClas...
Workingman asked 28/12, 2019 at 10:11
5
Solved
In my Swift app I have this class that handles a UITabBar.
class CustomTabBar: UITabBar {
override func awakeFromNib() {
super.awakeFromNib()
}
}
How can I animate the items when the user tap...
Folkmoot asked 24/10, 2018 at 16:26
12
Solved
The home page of my app has UIButtons, btnIncome and btnExpense. Pressing on this buttons pushes IncomeVC and ExpenseVC respectevely,which are two UIViewControllers with UITabBar added via xib. The...
Edla asked 17/5, 2013 at 12:3
7
Solved
I am trying to get desired color rendered in the background of Tab Bar however I am facing problems.
These are the things that I tried :-
Changing the background color of tab bar object from sto...
Mcshane asked 26/4, 2016 at 10:41
14
Solved
Tapping the tab bar icon for the current navigation controller already returns the user to the root view, but if they are scrolled way down, if they tap it again I want it to scroll to the top (sam...
Mckinleymckinney asked 13/3, 2014 at 22:16
9
Solved
I'm trying to add animation to my tabBarController when hidden. Im able to accomplish this effect with the navigationBarController by using self.navigationController?.isNavigationBarHidden = true. ...
Quaver asked 15/12, 2016 at 17:24
7
Solved
How to set the tab bar badge with swift ? for example when I get new message showing number 1 on the message icon !
Do I have to use the UITabBarItem.swift and write the code in it !
I'm not reall...
Hellfire asked 30/3, 2017 at 7:37
2
Solved
I try to create custom tabbar like the below picture:
Below is the result i get:
Below is my current code:
class CustomTabBarController: UITabBarController {
override func viewDidLoad() {
...
Anciently asked 28/11, 2019 at 14:53
7
I'm displaying badge on tab bar but when number increase it goes out to tab bar item like shown in image
I want to move the badge view slightly left so it fit on selected tab image.i tried as de...
Miun asked 16/6, 2014 at 4:52
3
Solved
I am trying to round top corners using below code
func roundCorners(corners:UIRectCorner, radius: CGFloat) {
let path = UIBezierPath(roundedRect: self.bounds,
byRoundingCorners: corners,
corne...
Daile asked 12/9, 2017 at 15:0
3
Solved
I have a SwiftUI application with a TabBar.
If I open a detail child view from a NavigationView, and then click on "Back", the TabBar would become transparent, showing the items in the Fe...
Illomened asked 6/10, 2021 at 14:24
5
Solved
I have not found relevant and up to date answers in the posts related to this question.
I would like to load all viewcontrollers on launch. Currently it launches as expected but when I tap on a ba...
Diseuse asked 21/10, 2015 at 14:16
20
Solved
I'm switching tabs programmatically in a tab bar driven application using UITabBarController.selectedIndex. The problem I'm trying to solve is how to animate the transition between the views. ie. f...
Dr asked 1/3, 2011 at 23:33
4
I have the below series of controllers and views. However, when I use the navigation link on the MoreView it changes the tabBarItem.title value. For instance it will say more, but when the privacy ...
Emeliaemelin asked 30/6, 2020 at 16:47
24
I use UITabBarController as a root view and app supports iOS 6 and above. Project class hierarchy is as below.
UITabBarController
- tab1
- UINavigationController
- UIViewController
- UIViewCon...
Guillemette asked 13/4, 2014 at 14:53
20
Solved
How can I change inactive icon/text color on iOS 7 tab bar? The one in gray color.
Euripides asked 31/3, 2014 at 16:31
5
I have couple of questions.
How to pass the data (which i got after the Alamofire request is finished), to one of children of TabBarController?
The first problem i have is that i can't override th...
Winnow asked 14/9, 2016 at 15:34
7
Solved
Hi I have this code and it doesn't work, what am I doing wrong?
- (void)viewDidLoad
{
[self.tabBarItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont fontWithName:@"Am...
Homogeneity asked 17/6, 2012 at 6:44
3
Solved
I want to build a pulsing animation on a simple UIImageView. The ImageView will grow a little bit bigger, then go back to its original size.
I used the following code:
- (void) doCoolAnimation {
...
Upshaw asked 6/9, 2010 at 16:52
7
I have a tab bar item on navigation controller connected with tab bar controller and i want to delete the title in swift
Tab Bar Controller > Navigation Controller > View Controller
Tab Bar Item ...
Greedy asked 12/4, 2016 at 0:26
4
Solved
I have an app which has a login screen and when the user logs in, a tab bar controller is pushed. I currently have some views that would benefit from the fact that apple now allows using the split ...
Pennoncel asked 5/12, 2014 at 22:1
3
I am trying to make my Tab Bar in my tab bar controller to have a low opacity background, so it is semi transparent, i am trying to do this programatically, however the background changes to the co...
Altricial asked 22/8, 2017 at 20:47
7
Solved
I am using a tab bar (UITabBarController) on my app and I wish to customize the appearance of the table that appears when you click the more button.
I have worked out how to change the appearance o...
Lupitalupo asked 13/1, 2009 at 9:2
1 Next >
© 2022 - 2024 — McMap. All rights reserved.