Post

Replies

Boosts

Views

Activity

Reply to How to navigate forums
every thing is based off [Tags] now so if you want to see those categories (tags) you need to search by them : here is list of the "categories" aka Tags https://developer.apple.com/support/forums/ to search type [tagname] in the the search bar then click on the tag. Not a huge fan of this as its not really intuitive, but you get used it. Hopefully they either make clickable tags to search by or other advancements. New forums are a start, but def needs some QOL changes.
Jun ’20
Reply to widgetUrl to Main App Question
this is from apple engineer, Great, What family (size) widget are you using? > I tried all 3 sizes (small, medium, large) Note that Link will only work in systemMedium and systemLarge, for deep linking from a systemSmall widget, you'll need to use widgetURL: https://developer.apple.com/documentation/swiftui/view/widgeturl(_:) Does your app already support deep links? > Yes. I can trigger the deep link from terminal (xcrun simctl ---) Are you using a SwiftUI App, or a UIApplicationDelegate? > For the main app, we are using UIApplicationDelegate. When your widget gets tapped your app should be passed the URL, if you support scenes your scene delegate should get a scene(:openURLContexts:) call, otherwise your application delegate should get a application(:open:options:) call. Here - https://developer.apple.com/forums/thread/652578
Jul ’20
Reply to Xcode 12 beta 3 - error compiling for Simulator
i get a simliar build warning for my watch os app, Building for watchOS Simulator, but linking in object file (/Applications/Xcode-beta.app/Contents/Developer/Platforms/WatchSimulator.platform/Developer/SDKs/WatchSimulator7.0.sdk/usr/lib/libWKExtensionMainLegacy.a(WKExtensionMainLegacy.o)) built for watchOS sounds like its a xcode / sdk warning, i would create a FB for it, i created one for watchos
Jul ’20
Reply to iOS 15 Gap between navigation bar and table view
i think what you might be seeing (which i also have seen) is that for ios 15 for the Plain table view style they add a Section header padding by default, I wish it was a checkbox or something so we dont have to have it (especially by default) since alot of us are using custom section headers, BUT they did add a function to manually set it in your viewDidLoad      if (@available(iOS 15.0, *)) {        [self.tableView setSectionHeaderTopPadding:0.0f];      } this should remove the padding or that "gap" you are seeing.
Jul ’21