Posts

Post marked as solved
10 Replies
FWIW, I often/always get this even in KeychainAccess.app, when copying a password or checking the "show password" checkbox. Two prompts before the password shows/is copied. Never seen it from my own apps/code.
Post not yet marked as solved
4 Replies
Thanx. I was contemplating that as a fallback. But I'm curious as to how the scrollview (ways detached from the actual event, can still "see" the keypress,...
Post not yet marked as solved
27 Replies
Same here, two different MacBooks (Cataline GM and latest Cataline beta, respectively), Xcode 11.0, 11.1 and 11.2.1. Instrunments either "cannot attach" or "cannot load tracking library" or beachballs or it "runs" but the (macOS) app never shows (though the process in `ps`). Essentially Instruments is entirely and literally unusable, which is really annoying and a productivity problem. (Instrument has been getting bad for a while, but at least it stil *ran* in Xcode 9/10).Wondering if Apple in 2019 is capable of touching any part of its software catalog without just breaking it beyond repair... 😟
Post marked as solved
6 Replies
This one looks fixed for me after rebuilding my app with GM. Phew.
Post marked as solved
6 Replies
It gets freakier. i just checked my other iOS 13 tets device, an iPad, which still had an earlier beta build of my app — both screens showed in dark mode just fine. Updated to my latest build, and now both viewes show their light-mode counterpart. The Launch view had been completely untouhced since i first added Dark Mode support; looks like just having been rebuilt with a newer Xcode beta broke it, maybe?
Post marked as solved
7 Replies
"it's just a ghost town."exactly what i meant. the forum is buggy and unsable, the software is pathetic for Apple standards (compare it to say the Swift forums). For ecample, the "Activity|Following" tells me i'm not following any posts, though i am. Content|Following shows them 🏼♀. I can never remember which one to check first to et back to my posts. Every two days, i'm logged out when i get back to the forums (and when i find a thread, log in to participate, i'm back at the root, the thread lost). Half the times i cannot post replies, the editor is just dead. Not to mention the editor is from 1993 and doesnt even, say, allow markdown.Using this forum is death by a thousand papercuts *and* usually yields zero reward in terms iof getting useful infos.It's a visious cycle of course. it's a pain to use, so no-one uses it, so no-one replies. so no-one excepts replies. so no-one uses it.it's patetic, for the offical/main developer community of a platform of Aples statue. Sorry to be blunt.
Post not yet marked as solved
3 Replies
it will only be available in iOS 13+, so you'll need to `if #avaiable()` the login logic to only use your previous option(s), on older versions. (for my app, i was using Facebook login as that was suited best for its context; i've decided to drop that option for iOS 13+ and use only Sign in with Apple, but i'll keep falling back to Facebook login on iOS 12.x and below)
Post marked as solved
6 Replies
Oddly, i'm just noticing, i have a nother view in the app thaty also doesn thonor dark mode properly. Until i just updated the xib to latest Xcode, it would show a white backghround, but the text labels would ("correctly") be white as well, and thius invisible. (both background and label color used the new values, SystemBackground, LabelColor). With the very latest now (some properties in the xib seems to have gotten renamed), it now shows fully as light mode again (white background, black text), even tbough the rest of the app i dark.This view too looks fine for Dark Mode in the designer.FTR, most of my app does not use xibs/storyboards, but manually instantiated table viewes. The only other xib based view is a Map, and that one shows dark correctly. very weird.Am i missing a setting in the xibs themselves to enable them for dark mode of iOS13? (they are set to "Open in Latest Xcode (10.0), Build for Deployment target)" (not sure why it says "Latest Xcode" is 10; 11 shows in the dropdown as option as well...
Post marked as solved
7 Replies
> 2) there are Apple venues (not these forums!) for reporting errors and providing feedback on beta releases.what, pray tell, would be the proper place for beta questions/discussions/sorting-out-developer-problems, if not this forum? Surely you're not suggesting "file a radar"?
Post marked as solved
6 Replies
> Did you update the app or completely remove it ?i'm installing the app via TestFlight. Did delete and reinstall it a few times last week while testing other issues (long post fixing the launch screen), so i don't tonk that's it, but i'll retry.Curious though that installing an update would not invalidate the launch screen. That would affect all real users as well, surely? What f an app update wants to *chnage* the laumch screen? Seems like a weird policy, if true.
Post marked as solved
7 Replies
Solved here:https://stackoverflow.com/questions/56978529/using-xcodebuild-to-do-a-command-line-builds-for-catalyst-uikit-for-mac/57402455#57402455God, this forum is useless...
Post marked as solved
29 Replies
speaking fo xcodebuild: has anyone figured out yet how to build (a library or app) for the UIKit for Mac destination using xcodebuild? `-sdk` onkly lets me distinguish between "iphoneos" and "iphonesimulator" 😟.