Post

Replies

Boosts

Views

Activity

Reply to Apple Watch logo requirements for app's notifications
there is no watchOS target I did not include watchOS app icons in Assets I do not see it in Assets>AppIcon. I only see it when there is a WatchOS companion app, in the watch Assets. Where do you see it to be provided ? In an app with similar situation, I provided all sizes of icons and did not notice issue. What app icons have you provided in Assets ? May be you could try with a unique 1024*1024 ?
Topic: Design SubTopic: General Tags:
Oct ’24
Reply to Cocoa application duplicated view
Welcome to the forum. If I understand, you create the imageView a first time by MyView *customView = [[MyView alloc] init]; as init calls initWithFrame which itself adds the imageView and a second time with [self.view addSubview:customView]; Try removing this second one. Does it work ?
Topic: UI Frameworks SubTopic: AppKit Tags:
Oct ’24
Reply to grid and buttons
Welcome to the forum It's difficult to understand what is the problem.   D should occupy the space occupied by the two buttons at the top A and B What does it mean ? That's not what the drawing shows Anyway, looking at the drawing, you have several ways: if you use storyboard (UIKit), it is very easy to position the buttons in a view, either in absolute coordinates or with constraints settings. you can also create buttons in code setting the correct frame you could also use a grid, but it is over complex for such a simple thing If you use SwiftUI , you create 2 HStacks, containing A, B, C and the second D, E ; then you encapsulate them in a VStack ; code would look like VStack { Spacer() HStack { Spacer() Button { A } Spacer() Button { B } Spacer() Button { C } Spacer() } Spacer() HStack { Spacer() Button { D } Spacer() Button { E } Spacer() } Spacer() } So please explain clearly what you do not know how to do.
Topic: UI Frameworks SubTopic: SwiftUI
Oct ’24
Reply to MacOS
Since when can we not publish apps developed in beta environments Since the beginning. What is the issue using the most recent release ? Reason for not allowing beta is to avoid later bugs (which should be corrected in release) due to issue in the beta development environment. That's a safe policy IMHO.
Sep ’24
Reply to Where is my "EU Trader Status" information displayed and who can see it?
AFAIU, it will be posted in the Appstore in the countries where DSA is applicable (EU). Apple will publish this information in the App Store in certain countries or regions. Here some examples (in French): https://www.igen.fr/app-store/2024/03/dsa-les-pages-de-lapp-store-affichent-de-nouvelles-infos-de-contact-des-developpeurs-142709 You should contact Apple support to see if possible and how to remove these information.
Sep ’24
Reply to XCode or IOS 18 Bug?
Does it work in Xcode 15 with iPhone 15 pro Max ? Or in other simulators with Xcode 16 ? There was something a bit similar, in SwiftUI: https://developer.apple.com/forums/thread/763158
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’24
Reply to Physics
Make an object float in the air (with a slight downward motion reminiscent of the moon’s surface) So it will not Float but live in a low gravity environment. On the moon, it is 1/6 or earth gravity, ie 1.62 m/s*s vs 9.81 It is a scene property, not an object property. See here how to set it: https://forums.developer.apple.com/forums/thread/133516 sceneView.scene.physicsWorld.gravity = SCNVector3(0, -1.62, 0) You can reduce the value -1.62 to -0.5 for instance if you want lower gravity.
Sep ’24
Reply to iPhone 15 Pro IOS 18 beta 6
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 Xcode 15 & 16: macOS app suddenly stops running in simulator
Is it a Mac app ? If so, it does not run on simulator but directly on the Mac. Or there is something you don't tell. I make a minor change What change is it ? Even a minor change can create serious problems. As it occurred in Xcode 15, problem not to search in Xcode 16. Similar error here: https://forums.developer.apple.com/forums/thread/759500 PS: when you expose a problem, try to be very precise and avoid digressions that make reading more complex.
Sep ’24
Reply to Apple Watch logo requirements for app's notifications
there is no watchOS target I did not include watchOS app icons in Assets I do not see it in Assets>AppIcon. I only see it when there is a WatchOS companion app, in the watch Assets. Where do you see it to be provided ? In an app with similar situation, I provided all sizes of icons and did not notice issue. What app icons have you provided in Assets ? May be you could try with a unique 1024*1024 ?
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to Cocoa application duplicated view
Welcome to the forum. If I understand, you create the imageView a first time by MyView *customView = [[MyView alloc] init]; as init calls initWithFrame which itself adds the imageView and a second time with [self.view addSubview:customView]; Try removing this second one. Does it work ?
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to 18.1 last beta update on iPhone - issues
The best is to revert to iOS 18.
Replies
Boosts
Views
Activity
Oct ’24
Reply to grid and buttons
Welcome to the forum It's difficult to understand what is the problem.   D should occupy the space occupied by the two buttons at the top A and B What does it mean ? That's not what the drawing shows Anyway, looking at the drawing, you have several ways: if you use storyboard (UIKit), it is very easy to position the buttons in a view, either in absolute coordinates or with constraints settings. you can also create buttons in code setting the correct frame you could also use a grid, but it is over complex for such a simple thing If you use SwiftUI , you create 2 HStacks, containing A, B, C and the second D, E ; then you encapsulate them in a VStack ; code would look like VStack { Spacer() HStack { Spacer() Button { A } Spacer() Button { B } Spacer() Button { C } Spacer() } Spacer() HStack { Spacer() Button { D } Spacer() Button { E } Spacer() } Spacer() } So please explain clearly what you do not know how to do.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Oct ’24
Reply to MacOS
Since when can we not publish apps developed in beta environments Since the beginning. What is the issue using the most recent release ? Reason for not allowing beta is to avoid later bugs (which should be corrected in release) due to issue in the beta development environment. That's a safe policy IMHO.
Replies
Boosts
Views
Activity
Sep ’24
Reply to xcode 16 ios 18.0 simulator download failed
Where did you download Xcode from ? I usually download from here: https://xcodereleases.com
Replies
Boosts
Views
Activity
Sep ’24
Reply to Where is my "EU Trader Status" information displayed and who can see it?
AFAIU, it will be posted in the Appstore in the countries where DSA is applicable (EU). Apple will publish this information in the App Store in certain countries or regions. Here some examples (in French): https://www.igen.fr/app-store/2024/03/dsa-les-pages-de-lapp-store-affichent-de-nouvelles-infos-de-contact-des-developpeurs-142709 You should contact Apple support to see if possible and how to remove these information.
Replies
Boosts
Views
Activity
Sep ’24
Reply to XCode or IOS 18 Bug?
Does it work in Xcode 15 with iPhone 15 pro Max ? Or in other simulators with Xcode 16 ? There was something a bit similar, in SwiftUI: https://developer.apple.com/forums/thread/763158
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to Problème dans Xcode depuis sa mise à jour 16.0
Il serait utile de décrire précisément ces erreurs et le contexte de votre app.
Replies
Boosts
Views
Activity
Sep ’24
Reply to Use iPhone to power an accessory
I got this: Apple's power rating for its Lightning cable is 5 Volts DC carrying 1.8 Amps of current equaling 9 Watts of power. Which sets a max for output (may be lower however).
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to Physics
Make an object float in the air (with a slight downward motion reminiscent of the moon’s surface) So it will not Float but live in a low gravity environment. On the moon, it is 1/6 or earth gravity, ie 1.62 m/s*s vs 9.81 It is a scene property, not an object property. See here how to set it: https://forums.developer.apple.com/forums/thread/133516 sceneView.scene.physicsWorld.gravity = SCNVector3(0, -1.62, 0) You can reduce the value -1.62 to -0.5 for instance if you want lower gravity.
Replies
Boosts
Views
Activity
Sep ’24
Reply to Collection and Index error on Xcode 16
I tested in an app in Xcode 16.0. Compiles fine. I also created a new project, and just added the extension at the end of AppDelegate. Compiles fine.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to Не приходит код
Как и где получить код для чего?
Replies
Boosts
Views
Activity
Sep ’24
Reply to iPhone 15 Pro IOS 18 beta 6
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 Xcode 15 & 16: macOS app suddenly stops running in simulator
Is it a Mac app ? If so, it does not run on simulator but directly on the Mac. Or there is something you don't tell. I make a minor change What change is it ? Even a minor change can create serious problems. As it occurred in Xcode 15, problem not to search in Xcode 16. Similar error here: https://forums.developer.apple.com/forums/thread/759500 PS: when you expose a problem, try to be very precise and avoid digressions that make reading more complex.
Replies
Boosts
Views
Activity
Sep ’24