What is the best thing for someone like me who just joined the Developer Community to start off with? What should I do?
I would really love to know how I can help the community! :)
Post not yet marked as solved
All the files in my app's package add upto 7 MB. But my swiftpm package has a size of 40.7 MB! i dont get how its possible. could you please offer a workaround? Thank you!
all my deliverables are done so this sucks :/
Post not yet marked as solved
Hey,
there are no details yet announced, but I would like to attend the special day for developers and students at Apple Park on June 6. I have won last year's Swift Student Challenge, please consider previous year's winners as well, we haven't had the chance to attend in person.
Greetings from Austria :)
Post not yet marked as solved
Hy! Hope you are all doing well. I already ask this question but no one give me any solution. I saw video of Inspecting, Modifying, and Constructing PencilKit Drawings. This video clear my all concepts. But I've one issue I want to draw on numbers like alphabets but there is no numbers file. In this code only uppercase and lowercase drawing file but these files not open. Firstly kindly tell me how to open this file and how to draw on numbers like alphabets. Your solutions are appreciation for me. I am waiting for your solution. Thanks.
Post not yet marked as solved
Hy!
Hope you are all doing well. I saw video of Inspecting, Modifying, and Constructing PencilKit Drawings. This video clear my all concepts. But I've one issue I want to draw on numbers like alphabets but there is no numbers file. In this code only uppercase and lowercase drawing file but these files not open. Firstly kindly tell me how to open this file and how to draw on numbers like alphabets.
Your solutions are appreciation for me.
I am waiting for your solution.
Thanks.
Post not yet marked as solved
The latest betas have new API in Core Location around "location pushes" including:
CLLocationManager.startMonitoringLocationPushes
CLLocationManager.stopMonitoringLocationPushes
protocol CLLocationPushServiceExtension
CLLocationPushServiceError
Does anyone know what these are for? I couldn't find anything in the WWDC sessions, or general web searches.
Post not yet marked as solved
Looks like in iOS15 widget setting is broken compared to iOS14 when title of the item is too long
iOS14:
iOS15:
Hi,
What might one be overlooking when troubleshooting for a build giving the physical device a blank app icon?
I'm loading my SwiftUI iOS app onto an iPhone X with the current Xcode 13 and iOS 15 beta, and the AppIcon shows up properly in the simulator, but comes up blank on my physical device.
I have removed the app before each build, cleaned the build folder and restarted the device. I have not erased the device yet.
The icon files are being generated by apple's PSD file from a 1024x1024 square png and then fed to Xcode via assets, and shows up correctly in its partnering JSON under AppIcon.
The iOS 15 beta simulator seems happy, but my physical device doesn't want any of it (app icon wise).
Thanks for any advice anyone could offer.
-Vlad W.
iOS 15.0 (19A5261w)
iPhone X NQCP2LL/A
Xcode 13 Version 13.0 beta (13A5154h)
Big Sur 11.4 (20F71)
MacBook Pro (15-inch, 2017)
Post not yet marked as solved
If you try to change the bar item text color programmatically like in iOS 14, it doesn't work in iOS 15.
For example:
// https://stackoverflow.com/questions/2576592/changing-font-size-of-tabbaritem/
UITabBarItem.appearance().setTitleTextAttributes(
[NSAttributedString.Key.foregroundColor: UIColor.red],
for: .normal)
This correctly changes the color when the tab bar is on top of a scroll view.
However, when the tab bar background becomes clear, all tab bar item text is red and not just the text for the currently selected tab.
Is this a bug in iOS 15? Or is this code wrong for iOS 15?
Post not yet marked as solved
I don't understand the changes made to the tab bar in iOS 15.
In my app, I have a collection view that goes all the way down to the bottom of the screen.
When the tab bar appears, it covers some of that collection view, which is fine.
However, in iOS15, the tab bar has no background (and no blur effect), thus making the tab bar item text hard to see over the collection view.
In interface builder, I tried turning on the "Scroll Edge" option. This gives a translucent background to the tab bar similar to what I had in iOS 14.
Unfortunately, the menu tab bar item text size is affected by this option. For some reason, it doesn't use the font size I set, but something smaller.
Why is this happening? How do I get it to use the correct font size?
P.S. I'm only using text for the tab bar items. There are no images.