Post

Replies

Boosts

Views

Activity

Reply to Multi-Selection List : changing Binding Array to Binding Set and back again
I tested the code in Xcode 16.4. I can select colors (but only one by one). It seems to work So could you explicit very clearly what the problem is (are) ? With more details than a single sentence.   buttons on Loader don't update the list on the screen for one Could you explain (possibly with some screenshots) ?   dealing with deleting choices that are in use - how does picker deal with them? Same question: Could you explain (possibly with some screenshots) ? Could you show where set / array is an issue in your code ?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jul ’25
Reply to "The compiler is unable to type-check this expression..."
Is it something new to Xcode 26 or are you using Xcode 16 ? You're right, that's a pretty common issue with SwiftUI and the pain is that there is not hint where the "error" precisely is. That's intrinsic to how SwiftUI works (it is not a compile error but a run time error). In some cases, just adding an element in an addition can cause the problem. I do not usually break it up. A common issue is with arithmetic expressions: always make sure that the type of each value is explicit. To localise the error, I go by dichotomy. I comment out half of the suspect part of code. If it works, problem is likely form the commented out. Otherwise, I comment half of the remaining part, and so on until I get to a single line.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jul ’25
Reply to Waiting for review
3 months with no reply is not normal. Did you received at least a mail stating that your app was waiting for review ? If no, that means you have not in fact submitted your app. Submitting has 2 steps: once you have completed all the informations in AppStoreConnect, you click a button to send for review (I don't remember the exact text of the button) then the button's title change to something like "ask for review": you have to click again. In the following minutes you'll receive a mail stating that your App is Ready for Review.
Jul ’25
Reply to iOS 26 restore
Have a look here: https://discussions.apple.com/thread/256078060?sortBy=rank and here: https://support.apple.com/en-us/108763 But I would be cautious without a backup. So, you may also wait (a couple of months) for an iOS 26 release and upgrade at that time. Your data should be safe. Then, don't forget to make a backup.
Topic: Community SubTopic: Apple Developers Tags:
Jul ’25
Reply to Tahoe Launchpad
You should post a bug report. If enough people request it, may be it could come back ? Otherwise, it is likely than an app will be available with the same and even extended capabilities. Maybe a good app idea for you ? 😉
Jul ’25
Reply to Help needed: unclear rejections & stalled review
The fact that the app was rejected several times probably doesn't help to speed up review. Did you indicate clearly, in the notes to reviewer, what you explain here ? As a different reviewer may be reviewing the app, that will help him or her to understand the context and not just notice that the app was already rejected 3 times. PS: please note that the developers' forum is not an official channel to Apple, even less to the review team.
Jul ’25
Reply to Should I Be Worried?
If your iPhone is your main and only device, I do advise NOT to install beta releases. Yes, it can be instable, by nature of a beta. Wait for a full release, and even don't rush to install. You can live a few months with previous release and wait for 26.2 or 26.3. For your app development, test on simulator, that's no risk. You will find plenty of information from Apple, on the web, on what's new in iOS 26.
Jul ’25
Reply to Label I Added in Storyboard Appears nil when I try to Dequeue a Cell Using a Data Source Cell Provider
There seems to be some confusion in your code. In the cell, you call delegate?.incrementNumberOfTaps(index: index) But you don't show where is this func implementation. It should be in class TapGridViewController: UIViewController, TapLabelCollectionViewCellDelegate as delegate is cell.delegate = self self is an instance of TapGridViewController
Topic: UI Frameworks SubTopic: UIKit Tags:
Jul ’25