Post

Replies

Boosts

Views

Activity

Reply to Issue with Xcode 16 - Errors When Splitting Code for Widgets
Is the error due to Swift suffix instead of swift ? Try to rename TestAppWidget/Provider.Swift to TestAppWidget/Provider.swift See more explanation here: https://www.reddit.com/r/Xcode/comments/1cyg5hr/sure_hope_this_helps_someone/ Don't forget to close the thread by marking the correct answer if it is solved. Otherwise, please provide more information if possible.
Sep ’24
Reply to iPhone 15 updated with IOS 18 beta test
Here is Apple communication, dated sept 9. The first set of Apple Intelligence features will be available in beta next month as part of iOS 18.1, https://www.apple.com/newsroom/2024/09/apple-intelligence-comes-to-iphone-ipad-and-mac-starting-next-month/#:~:text=free%20software%20update.-,The%20first%20set%20of%20Apple%20Intelligence%20features%20will%20be%20available,in%20the%20months%20to%20come. Apple Intelligence will be available as a free software update. The first set of Apple Intelligence features will be available in beta next month as part of iOS 18.1, iPadOS 18.1, and macOS Sequoia 15.1, with more features rolling out in the months to come. It will be available on iPhone 16, iPhone 16 Plus, iPhone 16 Pro, iPhone 16 Pro Max, iPhone 15 Pro, iPhone 15 Pro Max, and iPad and Mac with M1 and later, with device and Siri language set to U.S. English. Additional languages and platforms are coming over the course of the next year.
Sep ’24
Reply to NSMenuToolbarItem not showing first menu item when using NSMenuDelegate
what happens if you add option 3 and option 4 ? We see 2 menus (down arrow): what are they ? It seems you do not use the same (first or second) in the 2 screenshots; P¨lease explain. Several questions about this func: func toolbar(_ toolbar: NSToolbar, itemForItemIdentifier itemIdentifier: NSToolbarItem.Identifier, willBeInsertedIntoToolbar: Bool) -> NSToolbarItem? { let item = NSMenuToolbarItem(itemIdentifier: itemIdentifier) if itemIdentifier == NSToolbarItem.Identifier("item1") { let menu = NSMenu() fillMenuWithItems(menu) item.menu = menu } else if itemIdentifier == NSToolbarItem.Identifier("item2") { item.menu = NSMenu() item.menu.delegate = self } return item } I don't understand what you do here: when calling item1, you create the full menu (fillMenuWithItems) ; and you do not set the delegate but for item2, you do not fill I would try: let item = NSMenuToolbarItem(itemIdentifier: itemIdentifier) // if itemIdentifier == NSToolbarItem.Identifier("item1") { // <<-- REMOVE let menu = NSMenu() fillMenuWithItems(menu) item.menu = menu // } else if itemIdentifier == NSToolbarItem.Identifier("item2") { // <<-- REMOVE // item.menu = NSMenu() // <<-- REMOVE item.menu.delegate = self // } // <<-- REMOVE
Topic: UI Frameworks SubTopic: AppKit Tags:
Sep ’24
Reply to App Rejected
Welcome to the forum. If it is effectively rejected for 4.3(a): (a)ASR & NR Don’t create multiple Bundle IDs of the same app. If your app has different versions for specific locations, sports teams, universities, etc., consider submitting a single app and provide the variations using in-app purchase. Is it what you did ? there could be other reasons for spam (4.3(b)). what type of app is it ? There are some categories which are over crowded and new apps are rejected unless they are really original and high added value: (b) Also avoid piling on to a category that is already saturated; the App Store has enough fart, burp, flashlight, fortune telling, dating, drinking games, and Kama Sutra apps, etc. already. We will reject these apps unless they provide a unique, high-quality experience. Spamming the store may lead to your removal from the Apple Developer Program. so please tell more so that one can help you;
Sep ’24
Reply to Ai in Safari
Welcome to the forum. Your question is related to apps capabilities, not a question about your own app development. So it is not a question for this developers forum. However, if you do some search on the web (no need for AI there), you will find many articles that explain how to get it (limited to US so far). And apps on the appstore… Search for "Safari summarize web content with AI" Here is one of the many links that explain how to get it: https://beebom.com/how-summarize-web-pages-safari-apple-intelligence/
Topic: Safari & Web SubTopic: General
Sep ’24
Reply to Moving Photos
Welcome to the forum. In addition to @App Store Connect Engineer's answer, this could answer your question. It may not be as straightforward as you'd wish (steps 4 and 6 in a single step), but close to it; if not enough, you should file a bug report for enhancement request. https://www.quora.com/How-can-I-move-an-iPhone-photo-to-a-specific-album-and-then-have-the-photo-removed-from-the-all-photos-album-Is-there-a-recommended-app-to-do-this To move an iPhone photo to a specific album and then have it removed from the "All Photos" album, you can use the built-in Photos app on your iPhone. Here's how: Open the Photos app and locate the photo you want to move. Tap on the photo to select it. Tap the "Share" icon (the square with an upward-pointing arrow) at the bottom of the screen. In the share sheet, tap "Add to Album." Select the album you want to add the photo to, or create a new album if desired. Once the photo has been added to the new album, you can then tap the "Delete" icon (the trash can) to remove the photo from the "All Photos" album. No additional app is required to perform this task using the built-in Photos app on your iPhone. The process is straightforward and allows you to organize your photos into specific albums while removing them from the main "All Photos" view.
Sep ’24
Reply to I am unable to find the 'Submit for Review' button
Usually when app was rejected, you have to: generate a new build and archive (change the build number as well) create a new version in Appstore Connect (you may keep the same version number but it is safer to increment) provide all needed information in meta data submit for review (it is a 2 steps: you propose ad then, with the same button, submit to review team). Hope that helps.
Sep ’24
Reply to UICardViewController does not load cells
Welcome to the forum. Did you check that you have set the delegate and datasource for the collectionView, either in code (in viewDidLoad) or in storyboard ?
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Sep ’24
Reply to NSAttributedString.enumerateAttribute(_:in) crashes with custom attribute in macOS Sequoia
AFAIK, you cannot use a custom key as: NSAttributedString.Key("org.example.key") The attributes key:value is predefined (see Xcode doc for NSAttributedString.Key). And the value must correspond to the key. What would you expect from NSAttributedString(string: "b", attributes: [key: value])
Topic: UI Frameworks SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to why does apple not respond to developer help?
Surprising. I once needed support for similar operation and I got a very efficient support by phone. I contacted : https://developer.apple.com/contact/topic/select selected the first option "inscription program" selected "update account information" Then I was proposed to be contacted by phone or by mail.
Replies
Boosts
Views
Activity
Sep ’24
Reply to Issue with Xcode 16 - Errors When Splitting Code for Widgets
Is the error due to Swift suffix instead of swift ? Try to rename TestAppWidget/Provider.Swift to TestAppWidget/Provider.swift See more explanation here: https://www.reddit.com/r/Xcode/comments/1cyg5hr/sure_hope_this_helps_someone/ Don't forget to close the thread by marking the correct answer if it is solved. Otherwise, please provide more information if possible.
Replies
Boosts
Views
Activity
Sep ’24
Reply to iPhone 15 updated with IOS 18 beta test
Here is Apple communication, dated sept 9. The first set of Apple Intelligence features will be available in beta next month as part of iOS 18.1, https://www.apple.com/newsroom/2024/09/apple-intelligence-comes-to-iphone-ipad-and-mac-starting-next-month/#:~:text=free%20software%20update.-,The%20first%20set%20of%20Apple%20Intelligence%20features%20will%20be%20available,in%20the%20months%20to%20come. Apple Intelligence will be available as a free software update. The first set of Apple Intelligence features will be available in beta next month as part of iOS 18.1, iPadOS 18.1, and macOS Sequoia 15.1, with more features rolling out in the months to come. It will be available on iPhone 16, iPhone 16 Plus, iPhone 16 Pro, iPhone 16 Pro Max, iPhone 15 Pro, iPhone 15 Pro Max, and iPad and Mac with M1 and later, with device and Siri language set to U.S. English. Additional languages and platforms are coming over the course of the next year.
Replies
Boosts
Views
Activity
Sep ’24
Reply to google pay wrong transaction payment refund
Please stop spamming with nonsense posts.
Replies
Boosts
Views
Activity
Sep ’24
Reply to How do I complain to the citymall app?
Is it another spam ?
Replies
Boosts
Views
Activity
Sep ’24
Reply to iPhone mirroring in the EU for developers
Welcome to the forum. There appears to exist some tricks to do it, but pretty complex. Search for "iPhone Mirroring not available in Europe" to get links to those work around. Otherwise, did you contact Developer support ? I understand you need it for testing purpose only ?
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to NSMenuToolbarItem not showing first menu item when using NSMenuDelegate
what happens if you add option 3 and option 4 ? We see 2 menus (down arrow): what are they ? It seems you do not use the same (first or second) in the 2 screenshots; P¨lease explain. Several questions about this func: func toolbar(_ toolbar: NSToolbar, itemForItemIdentifier itemIdentifier: NSToolbarItem.Identifier, willBeInsertedIntoToolbar: Bool) -> NSToolbarItem? { let item = NSMenuToolbarItem(itemIdentifier: itemIdentifier) if itemIdentifier == NSToolbarItem.Identifier("item1") { let menu = NSMenu() fillMenuWithItems(menu) item.menu = menu } else if itemIdentifier == NSToolbarItem.Identifier("item2") { item.menu = NSMenu() item.menu.delegate = self } return item } I don't understand what you do here: when calling item1, you create the full menu (fillMenuWithItems) ; and you do not set the delegate but for item2, you do not fill I would try: let item = NSMenuToolbarItem(itemIdentifier: itemIdentifier) // if itemIdentifier == NSToolbarItem.Identifier("item1") { // <<-- REMOVE let menu = NSMenu() fillMenuWithItems(menu) item.menu = menu // } else if itemIdentifier == NSToolbarItem.Identifier("item2") { // <<-- REMOVE // item.menu = NSMenu() // <<-- REMOVE item.menu.delegate = self // } // <<-- REMOVE
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to App Rejected
Welcome to the forum. If it is effectively rejected for 4.3(a): (a)ASR & NR Don’t create multiple Bundle IDs of the same app. If your app has different versions for specific locations, sports teams, universities, etc., consider submitting a single app and provide the variations using in-app purchase. Is it what you did ? there could be other reasons for spam (4.3(b)). what type of app is it ? There are some categories which are over crowded and new apps are rejected unless they are really original and high added value: (b) Also avoid piling on to a category that is already saturated; the App Store has enough fart, burp, flashlight, fortune telling, dating, drinking games, and Kama Sutra apps, etc. already. We will reject these apps unless they provide a unique, high-quality experience. Spamming the store may lead to your removal from the Apple Developer Program. so please tell more so that one can help you;
Replies
Boosts
Views
Activity
Sep ’24
Reply to iOS 18 Underlined Feature 😭
What @darkpaw said, plus, you should post a small screenshot to explain what you mean.
Topic: Design SubTopic: General
Replies
Boosts
Views
Activity
Sep ’24
Reply to Ai in Safari
Welcome to the forum. Your question is related to apps capabilities, not a question about your own app development. So it is not a question for this developers forum. However, if you do some search on the web (no need for AI there), you will find many articles that explain how to get it (limited to US so far). And apps on the appstore… Search for "Safari summarize web content with AI" Here is one of the many links that explain how to get it: https://beebom.com/how-summarize-web-pages-safari-apple-intelligence/
Topic: Safari & Web SubTopic: General
Replies
Boosts
Views
Activity
Sep ’24
Reply to Moving Photos
Welcome to the forum. In addition to @App Store Connect Engineer's answer, this could answer your question. It may not be as straightforward as you'd wish (steps 4 and 6 in a single step), but close to it; if not enough, you should file a bug report for enhancement request. https://www.quora.com/How-can-I-move-an-iPhone-photo-to-a-specific-album-and-then-have-the-photo-removed-from-the-all-photos-album-Is-there-a-recommended-app-to-do-this To move an iPhone photo to a specific album and then have it removed from the "All Photos" album, you can use the built-in Photos app on your iPhone. Here's how: Open the Photos app and locate the photo you want to move. Tap on the photo to select it. Tap the "Share" icon (the square with an upward-pointing arrow) at the bottom of the screen. In the share sheet, tap "Add to Album." Select the album you want to add the photo to, or create a new album if desired. Once the photo has been added to the new album, you can then tap the "Delete" icon (the trash can) to remove the photo from the "All Photos" album. No additional app is required to perform this task using the built-in Photos app on your iPhone. The process is straightforward and allows you to organize your photos into specific albums while removing them from the main "All Photos" view.
Replies
Boosts
Views
Activity
Sep ’24
Reply to Issues found in iPhone XS iOS 18 update.
This is not a development issue for your app or for development tools, but a problem with an existing software. Such an issue to better be reported in Feedback or in Users Support forum (https://discussions.apple.com/welcome).
Topic: Community SubTopic: Apple Developers Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to I am unable to find the 'Submit for Review' button
Usually when app was rejected, you have to: generate a new build and archive (change the build number as well) create a new version in Appstore Connect (you may keep the same version number but it is safer to increment) provide all needed information in meta data submit for review (it is a 2 steps: you propose ad then, with the same button, submit to review team). Hope that helps.
Replies
Boosts
Views
Activity
Sep ’24