I had just updated to IOS 16 beta and I noticed that the recently added songs get skipped when you set them to "play next", it's not happening with older songs just ones I've added recently.
This is on a iPhone 12 Pro Max
Post
Replies
Boosts
Views
Activity
I'm using a the beta version of xcode and the SDK for iOS 15.
Now that iOS 15 is out will I be able to upload builds using the beta SDK to connect?
Hello! I'm developing a small app for the Apple Watch and I'm using UserDefaults as a way to pass data between Interface controllers.
I ran into SIGABRT when running this code:
language
var test: [Int] = defaults.object(forKey: "Number") as! [Int]
and this is the code that created and saved it:
language
var oneTimeArray = Array(repeating: 0, count: 50)
let defaults = UserDefaults.standard
defaults.set([oneTimeArray], forKey: "Number")