Post

Replies

Boosts

Views

Activity

Reply to Date Formatting XCode
Hi,    func forNorwegian(_ date: Date?) -> String? {     let dateFormatter = DateFormatter()     dateFormatter.dateFormat = "EEEE, d MMMM"     var output: String? = nil     if let date = date {       output = dateFormatter.string(from: date)     }     return output   }
Aug ’22
Reply to Date Formatting XCode
Hi,    func forNorwegian(_ date: Date?) -> String? {     let dateFormatter = DateFormatter()     dateFormatter.dateFormat = "EEEE, d MMMM"     var output: String? = nil     if let date = date {       output = dateFormatter.string(from: date)     }     return output   }
Replies
Boosts
Views
Activity
Aug ’22
Reply to missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
Hi, Please run following command in Terminal and then try. xcode-select --install
Replies
Boosts
Views
Activity
Aug ’22
Reply to trying to set up a table view
Hi, I think tableview outlet is not connected in storyboard / xib, and notif_log is not optional, so that's why it is crashing.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Aug ’22