You have a talent to pass on knowledge in light and easy to comprehend way. Please continue with your videos because they are very very good. And also they are what is needed for the real job. Rare are the projects with storyboards so thank you very much for doing everything programmatically. Looking forward for more from you! Big thanks!!
Man big thanks for tutorials 👍🏻 The way you make it programmatically is awesome because there are few guys who make tutorials programmatically, mostly on storyboard. Keep going bro, waiting for others tutorials especially programmatically 😁
Hey I’m making an app and I need to test it off my phone but whenever I plug it into Xcode and run it I’m not able to connect to the local host server running on my Mac. Is there any way to test the app off of local host?
Thats a good question. I've never tried that. I usually just deploy the server to a VPS and use the domain instead of localhost. I think its actually possible but you would need to use your mac's private ip address and make sure your mac allows incoming connections like that. Probably would need to make sure your firewall allows it and maybe some settings in the "Sharing" part of Macs system settings.
Same here. I'm not sure why happens but I found a way to fix it. You need to set up the appereance of the tab bar manually, the standard and scroll appearance specifically. Add this code to your controller. Change the color palette as pleased: let appearance = UITabBarAppearance() appearance.configureWithTransparentBackground() appearance.backgroundColor = .systemGray3 self.tabBar.standardAppearance = appearance self.tabBar.scrollEdgeAppearance = appearance self.tabBar.tintColor = .black self.tabBar.unselectedItemTintColor = .gray
Make sure that Your TabController class conforms to the UITabBarController sublass. Thats the only reason I can think of. Example: class TabController: UITabBarController { }
You have a talent to pass on knowledge in light and easy to comprehend way. Please continue with your videos because they are very very good. And also they are what is needed for the real job. Rare are the projects with storyboards so thank you very much for doing everything programmatically. Looking forward for more from you! Big thanks!!
Man big thanks for tutorials 👍🏻 The way you make it programmatically is awesome because there are few guys who make tutorials programmatically, mostly on storyboard. Keep going bro, waiting for others tutorials especially programmatically 😁
Thanks
What is your xcode version?
HI I am getting MORE and BACK button together when we have more than 10 tab items i am using swiftUi .. can you please help me to get only back button
Hey I’m making an app and I need to test it off my phone but whenever I plug it into Xcode and run it I’m not able to connect to the local host server running on my Mac. Is there any way to test the app off of local host?
Thats a good question. I've never tried that. I usually just deploy the server to a VPS and use the domain instead of localhost.
I think its actually possible but you would need to use your mac's private ip address and make sure your mac allows incoming connections like that. Probably would need to make sure your firewall allows it and maybe some settings in the "Sharing" part of Macs system settings.
Useful and cool video as always.
Keep up the good work
Thank you
So cool video. Definitely like
tabBar.barTintColor doesn’t work for me((
Use `self.tabBar.isTranslucent = false` in your TabController
hey, I have the same problem. How did you fix it?
Same here. I'm not sure why happens but I found a way to fix it. You need to set up the appereance of the tab bar manually, the standard and scroll appearance specifically. Add this code to your controller. Change the color palette as pleased:
let appearance = UITabBarAppearance()
appearance.configureWithTransparentBackground()
appearance.backgroundColor = .systemGray3
self.tabBar.standardAppearance = appearance
self.tabBar.scrollEdgeAppearance = appearance
self.tabBar.tintColor = .black
self.tabBar.unselectedItemTintColor = .gray
I'm getting this error " Value of type 'TabController' has no member 'setViewControllers' "
Make sure that Your TabController class conforms to the UITabBarController sublass. Thats the only reason I can think of.
Example:
class TabController: UITabBarController {
}
@@Codebrah That worked, thanks!
Why change to 13.0?
You don't really need to. Thats just usually what I do so I'm not just developing for ios 15+