Posts

Post not yet marked as solved
0 Replies
186 Views
This app has had CloudKit for a long time, have done at least 30 releases with it. Started new Xcode today (11.5) and first the upload failed with a complaint about provisioning, then when I went to capabilities, I turned CloudKit off and on and when I turned it on again, it lists 3 containers but not the one the app has been using.
Posted Last updated
.
Post marked as solved
3 Replies
503 Views
Went to open Xcode today. CPU went to 300% and the list of projects did not appear. Left, came back it was there, picked a project, hung again, CPU at 300 again. After a good half hour it says 'this project was downloaded from the internet do you want to open it?' and it showed a URL pointing to my icloud drive?Weird cause I was using Xcode fine for some time.Force quitting Xcode did not stop the icloud craziness. Guess I will boot and see if that helps. Nope. It's transferring a ton of files. I guess it just decided it was time, there's not much new. Total craziness, just bricks the machine, makes it pretty much unusable.
Posted Last updated
.
Post marked as solved
1 Replies
376 Views
Just saw the note on the release notes on the phone version. Whoops. But now the phone version will not install. Does anyone know how to remedy this? I assume I cannot just unpair and reinstall then pair again?
Posted Last updated
.
Post marked as solved
2 Replies
430 Views
Got my ActionSheet to come up and go away after I select an item, but cannot figure out how to navigate to a new view from the trigger closure. Tried making the button itself in the AS be a NavigationButton but does not seem to like that. Only tutorial I found was TwoStraws and that did not show any action being invoked.
Posted Last updated
.
Post marked as solved
2 Replies
839 Views
Then opened it in Sketch. I was able to take an SVG and paste it into one of the spots in the grid, but am missing how I am supposed to make thicker versions. So do I have to basically figure out how to thin out the lines? in svg? I might as well just write the code to animate this? Seems ridiculous. I thought the template would have one symbol that you put some path info into and then it replaces the grid of symbols. Totally don't understand how the team found the time to produce a WWDC session but not a simple guide to doing this, I don't know, with an example.. ?
Posted Last updated
.
Post not yet marked as solved
0 Replies
213 Views
I have an icon. I made a white version so I could support dark mode. But when I put the preview (SwiftUI) to dark mode, I get what is in Any, not what is in Light or Dark. So I have a white outlined version in Dark and a black one in Light and then I cannot leave Any empty. Whatever I put in there is what I will get. I am thinking maybe I have to do something in the app (I do with Material on Android), but that does not seem to be the case as the demos did not show any code changes. Maybe it's a bug?
Posted Last updated
.
Post not yet marked as solved
3 Replies
565 Views
Found the WWDC session about the new stuff in Extensions, looks great, and the session was good.Generated one, and my toolbar button is showing up but clicking it does nothing. Nothing appears in the console. Then I added some code to make it show a popover and that also does not get called.The following: override func toolbarItemClicked(in window: SFSafariWindow) { // This method will be called when your toolbar item is clicked. NSLog("The extension's toolbar item was clicked") window.getToolbarItem { toolbarItem in toolbarItem?.showPopover() } }The function was already there, I added the iteration over the toolbarItems and the call to showPopover() (per the session).And then the method, in the handler looks thus: override func popoverWillShow(in window: SFSafariWindow) { window.getAllTabs { tabs in let tabCount = tabs.count NSLog("found \(tabCount) tabs") } }And this never gets called. Nothing shows up in the console and the breakpoint is never called.
Posted Last updated
.
Post not yet marked as solved
1 Replies
772 Views
Wondering if there are things that others are doing, or if there's a way to remediate this that I just don't know about.Here's the flow:setup a geofence (e.g. around someone's home)suddenly out of nowhere it generates an exit event, even though the person has not leftif we fetch the location at that point, asking for accuracy, it often returns the same wrong address, but with an accuracy that is < the radius Really 3 is the biggest problem. Let me explain this a little more clearly: I get the fake exit and I go and ask for a real location and I loop until I get under 100 meters, and it gives me a wrong location with an accuracy of 65m. The actual location is > 65m away so this is just wrong.In summary: kind of not knowing how to remedy the dual layered failure here.
Posted Last updated
.
Post not yet marked as solved
3 Replies
833 Views
Definitely want to install it. Wondering if there is a good guide to doing a dual boot. I have 100GBs of free space on my machine so should not be a problem. Mainly want to dual boot because I still have to create store releases.
Posted Last updated
.
Post not yet marked as solved
2 Replies
279 Views
We have made a mobile app for a client. The client's CEO does not like the + button for adding items to the main view. He thinks it's too small. We added a coachmark, that was not enough. Same complaint. Looks like the choices according to the interface guidelines are:+ buttonword add spelled out+ button on a blank line at the bottom (Reminders does this)Are there any other ones? I think Material has gotten into people's heads and LARGE + buttons are appealing. I told them that we cannot just implement a FAB in ios, or just bolt one on.Thanks.
Posted Last updated
.