Posts

Post not yet marked as solved
11 Replies
I want to add to comments from garthoid about AppleID problems. I ran into problems with errors/warnings disappearing after updating to Xcode 14.3.1 (sorry don't remember previous version I was using). In my case, I had a company ID (personal LLC company - sole developer) that Xcode said had exprired and needed to log in. I don't really remember when/how this ID was created, but there really is no associated login with Apple for it that I am aware of. I deleted the ID. The company is still listed under "Team" on the Accounts tab. However, after deleting that ID, Live Issues started working again. Hope this can be helpful to someone else.
Post marked as solved
18 Replies
Ran into a segmentation fault. Happened after I was modifying the following line and was not obvious I was missing a last parentheses. let blockW = min(geometry.size.width, 0.7 * (geometry.size.height + 10) Surprising that I couldn't have gotten a friendlier error. This was with XCode 13.4.1. However, when I tried to make a minimal simple program to submit as a bug report, I got useful errors such as: Use of local variable 'blockW' before its declaration. But could turn on/off segmentation problem easily when the statement was in my full app.
Post marked as solved
2 Replies
Has been bugging me too. Discovered when you now add a new button it comes in with style "Plain". Change the style to "Default" and the warning will go away.
Post marked as solved
2 Replies
Been bugging me too. Discovered when you add a new button it now comes in with style Plain. Change it to "Default" and it warning goes away.
Post not yet marked as solved
4 Replies
Same problem. Just got Apple Silicon Mac Mini. IBDesignable button has two red exclamation marks. One thing to do: 1) Delete any tabs showing the IBDesignable item(s). 2) Clean build folder (maybe not needed). 3) Exit Xcode. 4) Restart Xcode/project. This doesn't fix the underlying problem, but you don't have to look at error messages. (Just don't peek at your views :)
Post marked as solved
9 Replies
Hi. Thanks for trying. I used your code - appreciate it is simpler than mine. Still on Xcode 12 Beta 3. It still exhibits the same problem I saw. Be sure to look at what happens when tapping the EditButton right after compiling - before doing any other table actions. The table tries - one sees a brief jerk - but cannot actually get into edit mode. Just in case there is a system dependency, I am running on macOS Catalina 10.15.6.
Post marked as solved
9 Replies
Thank you. Problem is gone in beta 4.
Post marked as solved
9 Replies
Did some checking with different iOS simulators. Problem shows up on iPhone/iPod devices. Problem shows up on iPad in landscape. For iPad in portrait, one has to hit the back button first to see the screen - and when it reaches the screen, it works ok.
Post not yet marked as solved
22 Replies
Apple Tutorial still broken after upgrading to Xcode GM_Seed. Still has no change or workaround for dealing with multiple buttons in a List row.
Post not yet marked as solved
22 Replies
Thanks. One can sort of get things to work if one moves the action for ALL the buttons to their respective onTapGesture{} call, and not just the chevron button.But then one realizes that one doesn't need (shouldn't use?) buttons at all! Removing the action for a button, then one should just use the Image() or Text() "views" with the onTapGesture{} call.So, basically, if you are going to eventually use List(), don't use Button() - especially if you might have multiple in a cell. ??? Guess I'm still hoping Apple will eventually allow multiple buttons in a cell.
Post not yet marked as solved
22 Replies
Broken record. Apple tutorial still not working with Beta 7.
Post not yet marked as solved
22 Replies
Upgraded to beta 6. Problem described in this post and the Apple tutorial are still broken as described above.
Post not yet marked as solved
31 Replies
Thanks for the collection. Here is an item from https://forums.developer.apple.com/thread/119541. This is still broken in beta 5 and in Apple's tututorial. • Use of multiple buttons in a List row does not work
Post not yet marked as solved
22 Replies
Upgraded to beta 5. The Apple tutorial is still broken - "Recent Hikes" row still doesn't behave as it should. Basically, still indicating that you still cannot have multiple buttons on a List row. Even if the standard was to only allow/work with one button, I was hoping that Apple would provide a way to turn off the "standard" behavior so that the behavior that was built up for that item (as seen earlier in the tutorial) would work when it was included in a List.
Post not yet marked as solved
22 Replies
Upgraded to beta 4. The tutorial is still broken and can't deal with multiple buttons on the "Recent Hikes" row. And as shown by the simpler example above by SilentJohn.