Post

Replies

Boosts

Views

Activity

Reply to IOS 15
Those who tell probably don't know. And those who know won't tell. I just note there are already 2 versions waiting for release: 14.6RC2 and 14.7 beta. So would be a bit surprising to get at the same time 15 beta. But WWDC approaching…
Topic: App & System Services SubTopic: Core OS Tags:
May ’21
Reply to How long does it take to become a decent Swift Developer?
It depends from where you start. If you already know an Object oriented language, you should speak rapidly and become fluent in 6 months (if you work regularly). But it will take years to become an expert (language is very reach, with some sophisticated patterns like Generics, closures with all their subtlities, protocols…). After 5 years of Swift, I'm still learning (and the language is still evolving) What takes time is not only the language but master the API of iOS / MacOS and get experience in the app architecture itself. Not to speak of mastering Xcode and publication on the appStore. So, all in all, I would say not less than 1 year. You will find a lot of tutorial material from Apple in Books app. Or many on the web. And don't forget, you will always find other developers on this forum to help you. But it is real fun, worth the effort. Wish you great fun.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
May ’21
Reply to Tab bar item localization
It is so easy to do it with the basic mechanisms, why do differently ? I don't see how you manage your localisation in your app. what is localise() func ? in which class do you do this ? with tabBarItem.title i'm able to localize title when it is in viewDidLoad or viewWillappear
Topic: UI Frameworks SubTopic: UIKit Tags:
May ’21
Reply to Why aren't Apple employees monitoring this forum? What gives?
I do agree with you. That was my comment that it would be great to get someone with internal knowledge, provide a robust answer when other developers cannot provide it. Yes, I do experience very slow response each time I open or update a page. For several seconds (up to 5 or 6), it is waiting, progress bar stalled at 3 or 4 cm, . Unfortunately, just another illustration of the absolutely poor quality of the forum software. Hope this topic will be addressed some day in a WWDC …
May ’21
Reply to View Controller not visible in Identity Inspector
Your question is really unclear. But I guess in a moment you will provide the answer yourself… 😀 but it says no selection?  That's because you have not selected anything in the storyboard. You have to select the viewController in storyboard (click on the white bar with 3 icons at the top of the viewController in IB) and then open Identity inspector. Give it RestaurantListViewController as custom class.
Topic: Programming Languages SubTopic: Swift Tags:
May ’21
Reply to Tab bar item localization
So you do this in the "child" VC (LevelsViewController for instance). Which is loaded only when you access to it. If you don't want to do it the simple way, you should: subclass UITabBarController: MyTabBarController create IBOutlet for the tabBar in viewDidLoad, change the titles of the tabBarItems with localiee() set the class of the TabBarController to MyTabBarController in Identity Inspector.
Topic: UI Frameworks SubTopic: UIKit Tags:
May ’21
Reply to Swift - How to Call and Show XIB/StoryBoard inside from XIB?
Could you explain. I am having issues with presenting the nib cell Cell is defined in a nib, PodcastViewCell, exact ? What issue exactly ? You just display the cell in the tableView. So, you should have registered the cell, in viewDidLoad (where the table view is): override func viewDidLoad() { super.viewDidLoad() let nib = UINib(nibName: "PodcastViewCell", bundle: nil)  tableView.register(nib, forCellReuseIdentifier: "PodcastViewCell") Assuming you have defined an IBOutlet (tableView) for the UITableView or that your class is a UITableViewController Does this part work OK ? If so, could you show how you call now the player ?
Topic: UI Frameworks SubTopic: UIKit Tags:
May ’21