Search results for

“show when run”

115,097 results found

Post

Replies

Boosts

Views

Activity

Reply to ParticleEmitterComponent Position Offset Issue After iOS 26.1 Update – Seeking Solutions & Workarounds
On iPhone 17 Pro with iOS 26.3.1, ParticleEmitterComponent impact VFX appear visually rooted near the device / the world pose from when tracking stabilized, not at the intended world-space hit, even though the host entity hierarchy is correct: we parent clones under ground_anchor with convert(position:from: nil) from world hits, and runtime logs show holderOriginWorld matches requestedWorldPos with worldPosErrM = 0, so this is not an app-side anchor math bug. particlesInheritTransform = true (Apple’s suggested workaround) does not fix the visible misplacement. This matches the ParticleEmitterComponent / transform regression discussed around iOS 26.1+ (e.g. forum thread / FB21346746). We’re looking for confirmation, workarounds, or a fix timeline from Apple Engineering.
Topic: Graphics & Games SubTopic: RealityKit Tags:
1w
segmented picker style causes runtime warning
On OSX, using a segmented picker style causes the following warning to be emitted (when a different selection is made) : Publishing changes from within view updates is not allowed, this will cause undefined behavior. The warning is not emitted using the 'Preview Canvas' only when running the app. Changing the picker style to automatic also fixes it, but the segmented style is used extensively. Tested using XCode 26.4.1 on MacOS 26.3.1 --- view --- import SwiftUI internal import Combine enum Mode : String { case one, two, three } class MyObject : ObservableObject { @Published var mode : Mode = .one } struct ContentView: View { @StateObject var obj = MyObject() var body: some View { VStack { Picker(Mode,selection: $obj.mode) { Text(One).tag(Mode.one) Text(Two).tag(Mode.two) Text(Three).tag(Mode.three) } .pickerStyle(.segmented) } .padding() } } #Preview { ContentView() } --- app --- import SwiftUI @main struct SwiftUIBugApp: App { var body: some Scene { WindowGroup { ContentView() } } }
6
0
56
1w
Deploying an Update to an Existing Bundle after Transfer of Account
Hello Community I have a current app that is live in production that was last deployed under Account X. I had to change my account name to Account Y so I created a new Account and asked Apple to transfer my app. They have done and I can see my App on the new Account as well as transferring my app id (bundleID) and provisioning profiles. I am trying to push a new version of the app that was transffered but I keep on Running into this error. My Account X has expired but the new Account (Account Y) is valid and has no agreement exceptions on it. Couple of questions The Transfer Status is Active (not complete) is this correct? Is it possible there is still ties to the bundle id to the old Account X that I can no longer see I have a paid agreement present and sitting in New Status under the business page. I do not have any paid app functions on my app.
1
0
37
1w
StoreKit 2 Product.products(for:) returns no products in TestFlight after subscriptions are attached and waiting for review
We have an iOS app using StoreKit 2 only (no RevenueCat). Products: pro1 (non-consumable) monthly (auto-renewable) annual (auto-renewable, 14-day introductory free trial) Current App Store Connect state: all products are submitted / attached to app version 1.0 subscriptions and IAP are now in Waiting for Review annual has an introductory offer configured in App Store Connect monthly and annual are in the same subscription group App behavior: We load products using Product.products(for:) with all three product IDs. In TestFlight, for multiple tester accounts, StoreKit still returns no usable products and the paywall remains in retry state. Earlier debug checks showed: annual.subscription?.introductoryOffer == nil isEligibleForIntroOffer == false Because introductoryOffer is nil, this does not appear to be only a tester-eligibility issue. It looks like the annual subscription product is not yet surfacing its intro offer/product data in TestFlight. Question: Is it expected that Product.products(for:) /
0
0
19
1w
Reply to SMAppService.daemon and AirWatch installation
The installation script has to update an endpoint security extension, so it first copies a signed app with the extension embedded in it and then executes that app and suspends security checks until the main app is installed. Then it runs the main app as a command line tool. The first app that updates the security extension is then removed. The two steps are needed because the endpoint security extension prevents modifying the main app. When the main app acts in install mode, it configures a daemon and an agent. It configures a security agent plugin and updates authorization db to use it. The main app and security agent plugin communicate with the daemon using XPC. A managed policy is installed that gives the app and the endpoint security extension full disk access.
Topic: App & System Services SubTopic: Core OS Tags:
1w
Module dependency error
Hi everyone, yesterday i installed some package in my ios app , but i had a lot of problems to compile , due to reset my branch and get started from 0. My project have pods with firebase, lottie, instana and truskit but now, when a i try to run my project, xcode show Unable to resolve module dependency into LOTTIE, INSTANA, TRUSKIT, FIREBASE . I visited a lot of forums and websites, and i tried the followings steps: Pod deintegrate pod repoupdate pod install Clean build folder Delete derived data but isnot working. Also,I reinstalled xcode , 2 versions , i reclone my repository and the issue persist. Sorry, my english is basic only
0
0
36
1w
App Store Connect invitation showing "Invalid" immediately after being sent
Hi everyone, I’m facing a persistent issue where App Store Connect invitations are marked as Invalid or Expired the moment the recipient clicks the link, even if it was sent just minutes prior. I have already tried the following troubleshooting steps without success: Removed and re-added the user multiple times. Sent invitations to different email addresses (different domains). Changed the assigned Roles (tried Developer and Support). Tried opening the invitation link in Incognito/Private mode and different browsers. Despite these attempts, the link remains invalid. Is there an ongoing server issue or a specific workaround for this? Thanks in advance for any help!
1
0
134
1w
Reply to iOS 26 regression: `DeviceActivityEvent`: `eventDidReachThreshold` called immediately (instead of waiting till threshold is reached)
[quote='885208022, DTS Engineer, /thread/808470?answerId=885208022#885208022'] Provide a focused project showing what you trying to accomplish and that the API is doing currently. [/quote] Thanks @DTS Engineer Albert for your response. I believe it’s currently not required to add an additional sample project, as the Screen Time team has informed me that the issue is most likely resolved in iOS 26.5 beta. So far I wasn't able to reproduce the issue anymore. I was just confused by your comment above that mentioned updating all devices signed into a family account, since we also reproduced the issue on devices where the user’s own screen time was managed compared to an underage family member. The bug might apply to families managing their kids’ screen time as well, but we don’t have that use-case in our app. Anyway, I hope this all doesn't matter anyway since the bug is hopefully addressed!
1w
Invitation problem
I was invited to join development team. so after receiving mail to my account I clicked accept invitation button in email. but the page of appstoreconnect shows that link is expired or invalid. however admin Is inviting me 2 min ago. how can I solve this problem? what should I do?
20
0
596
1w
Reply to libtool: warning: 'Foo.o' has no symbols on Xcode 26.4
Thanks for confirming. And it turns out that this is easy to reproduce: Using Xcode 26.4, create a new project from the macOS > Library template, and choose to create a Cocoa static library. In the resulting .h file, remove the whole @interface block. And in the .m file, convert the @implementation block to a category. For example: @implementation NSUUID (Foo) - (void)test { } @end Choose Product > Build. This issues the following warning: libtool: warning: 'Foo.o' has no symbols This actually makes some degree of sense: Xcode has run libtool to convert the various object (.o) files in the target into a static library (.a). There’s only one object file. It only contains a category. Objective-C categories don’t publish any symbols. Consider this: % nm …/Foo.o 0000000000000000 t -[NSUUID(Foo) test] U _OBJC_CLASS_$_NSUUID 0000000000000028 s __OBJC_$_CATEGORY_INSTANCE_METHODS_NSUUID_$_Foo 0000000000000048 s __OBJC_$_CATEGORY_NSUUID_$_Foo 0000000000000014 s l_OBJC_CLASS_NAME_ 0000000000000088 s l_OB
1w
Reply to ParticleEmitterComponent Position Offset Issue After iOS 26.1 Update – Seeking Solutions & Workarounds
On iPhone 17 Pro with iOS 26.3.1, ParticleEmitterComponent impact VFX appear visually rooted near the device / the world pose from when tracking stabilized, not at the intended world-space hit, even though the host entity hierarchy is correct: we parent clones under ground_anchor with convert(position:from: nil) from world hits, and runtime logs show holderOriginWorld matches requestedWorldPos with worldPosErrM = 0, so this is not an app-side anchor math bug. particlesInheritTransform = true (Apple’s suggested workaround) does not fix the visible misplacement. This matches the ParticleEmitterComponent / transform regression discussed around iOS 26.1+ (e.g. forum thread / FB21346746). We’re looking for confirmation, workarounds, or a fix timeline from Apple Engineering.
Topic: Graphics & Games SubTopic: RealityKit Tags:
Replies
Boosts
Views
Activity
1w
Reply to segmented picker style causes runtime warning
I can't really run the beta, because I need to build for production. Did you verify that it occurs under the latest XCode production release?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
1w
segmented picker style causes runtime warning
On OSX, using a segmented picker style causes the following warning to be emitted (when a different selection is made) : Publishing changes from within view updates is not allowed, this will cause undefined behavior. The warning is not emitted using the 'Preview Canvas' only when running the app. Changing the picker style to automatic also fixes it, but the segmented style is used extensively. Tested using XCode 26.4.1 on MacOS 26.3.1 --- view --- import SwiftUI internal import Combine enum Mode : String { case one, two, three } class MyObject : ObservableObject { @Published var mode : Mode = .one } struct ContentView: View { @StateObject var obj = MyObject() var body: some View { VStack { Picker(Mode,selection: $obj.mode) { Text(One).tag(Mode.one) Text(Two).tag(Mode.two) Text(Three).tag(Mode.three) } .pickerStyle(.segmented) } .padding() } } #Preview { ContentView() } --- app --- import SwiftUI @main struct SwiftUIBugApp: App { var body: some Scene { WindowGroup { ContentView() } } }
Replies
6
Boosts
0
Views
56
Activity
1w
Deploying an Update to an Existing Bundle after Transfer of Account
Hello Community I have a current app that is live in production that was last deployed under Account X. I had to change my account name to Account Y so I created a new Account and asked Apple to transfer my app. They have done and I can see my App on the new Account as well as transferring my app id (bundleID) and provisioning profiles. I am trying to push a new version of the app that was transffered but I keep on Running into this error. My Account X has expired but the new Account (Account Y) is valid and has no agreement exceptions on it. Couple of questions The Transfer Status is Active (not complete) is this correct? Is it possible there is still ties to the bundle id to the old Account X that I can no longer see I have a paid agreement present and sitting in New Status under the business page. I do not have any paid app functions on my app.
Replies
1
Boosts
0
Views
37
Activity
1w
StoreKit 2 Product.products(for:) returns no products in TestFlight after subscriptions are attached and waiting for review
We have an iOS app using StoreKit 2 only (no RevenueCat). Products: pro1 (non-consumable) monthly (auto-renewable) annual (auto-renewable, 14-day introductory free trial) Current App Store Connect state: all products are submitted / attached to app version 1.0 subscriptions and IAP are now in Waiting for Review annual has an introductory offer configured in App Store Connect monthly and annual are in the same subscription group App behavior: We load products using Product.products(for:) with all three product IDs. In TestFlight, for multiple tester accounts, StoreKit still returns no usable products and the paywall remains in retry state. Earlier debug checks showed: annual.subscription?.introductoryOffer == nil isEligibleForIntroOffer == false Because introductoryOffer is nil, this does not appear to be only a tester-eligibility issue. It looks like the annual subscription product is not yet surfacing its intro offer/product data in TestFlight. Question: Is it expected that Product.products(for:) /
Replies
0
Boosts
0
Views
19
Activity
1w
Reply to SMAppService.daemon and AirWatch installation
The installation script has to update an endpoint security extension, so it first copies a signed app with the extension embedded in it and then executes that app and suspends security checks until the main app is installed. Then it runs the main app as a command line tool. The first app that updates the security extension is then removed. The two steps are needed because the endpoint security extension prevents modifying the main app. When the main app acts in install mode, it configures a daemon and an agent. It configures a security agent plugin and updates authorization db to use it. The main app and security agent plugin communicate with the daemon using XPC. A managed policy is installed that gives the app and the endpoint security extension full disk access.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
1w
Reply to SMAppService.daemon and AirWatch installation
Yes. The app is run as a command line tool with an argument telling it to perform an install. That causes the calls with SMAppService.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
1w
Module dependency error
Hi everyone, yesterday i installed some package in my ios app , but i had a lot of problems to compile , due to reset my branch and get started from 0. My project have pods with firebase, lottie, instana and truskit but now, when a i try to run my project, xcode show Unable to resolve module dependency into LOTTIE, INSTANA, TRUSKIT, FIREBASE . I visited a lot of forums and websites, and i tried the followings steps: Pod deintegrate pod repoupdate pod install Clean build folder Delete derived data but isnot working. Also,I reinstalled xcode , 2 versions , i reclone my repository and the issue persist. Sorry, my english is basic only
Replies
0
Boosts
0
Views
36
Activity
1w
Reply to Invitation problem
Experiencing the exact same problem - tried deleting user add user again. Also tried with other email address - same issue - link shows its expired as soon as opened - tried in incognito safari / chrome. Not sure what more to do
Replies
Boosts
Views
Activity
1w
App Store Connect invitation showing "Invalid" immediately after being sent
Hi everyone, I’m facing a persistent issue where App Store Connect invitations are marked as Invalid or Expired the moment the recipient clicks the link, even if it was sent just minutes prior. I have already tried the following troubleshooting steps without success: Removed and re-added the user multiple times. Sent invitations to different email addresses (different domains). Changed the assigned Roles (tried Developer and Support). Tried opening the invitation link in Incognito/Private mode and different browsers. Despite these attempts, the link remains invalid. Is there an ongoing server issue or a specific workaround for this? Thanks in advance for any help!
Replies
1
Boosts
0
Views
134
Activity
1w
Reply to iOS 26 regression: `DeviceActivityEvent`: `eventDidReachThreshold` called immediately (instead of waiting till threshold is reached)
[quote='885208022, DTS Engineer, /thread/808470?answerId=885208022#885208022'] Provide a focused project showing what you trying to accomplish and that the API is doing currently. [/quote] Thanks @DTS Engineer Albert for your response. I believe it’s currently not required to add an additional sample project, as the Screen Time team has informed me that the issue is most likely resolved in iOS 26.5 beta. So far I wasn't able to reproduce the issue anymore. I was just confused by your comment above that mentioned updating all devices signed into a family account, since we also reproduced the issue on devices where the user’s own screen time was managed compared to an underage family member. The bug might apply to families managing their kids’ screen time as well, but we don’t have that use-case in our app. Anyway, I hope this all doesn't matter anyway since the bug is hopefully addressed!
Replies
Boosts
Views
Activity
1w
Invitation problem
I was invited to join development team. so after receiving mail to my account I clicked accept invitation button in email. but the page of appstoreconnect shows that link is expired or invalid. however admin Is inviting me 2 min ago. how can I solve this problem? what should I do?
Replies
20
Boosts
0
Views
596
Activity
1w
Reply to libtool: warning: 'Foo.o' has no symbols on Xcode 26.4
Thanks for confirming. And it turns out that this is easy to reproduce: Using Xcode 26.4, create a new project from the macOS > Library template, and choose to create a Cocoa static library. In the resulting .h file, remove the whole @interface block. And in the .m file, convert the @implementation block to a category. For example: @implementation NSUUID (Foo) - (void)test { } @end Choose Product > Build. This issues the following warning: libtool: warning: 'Foo.o' has no symbols This actually makes some degree of sense: Xcode has run libtool to convert the various object (.o) files in the target into a static library (.a). There’s only one object file. It only contains a category. Objective-C categories don’t publish any symbols. Consider this: % nm …/Foo.o 0000000000000000 t -[NSUUID(Foo) test] U _OBJC_CLASS_$_NSUUID 0000000000000028 s __OBJC_$_CATEGORY_INSTANCE_METHODS_NSUUID_$_Foo 0000000000000048 s __OBJC_$_CATEGORY_NSUUID_$_Foo 0000000000000014 s l_OBJC_CLASS_NAME_ 0000000000000088 s l_OB
Replies
Boosts
Views
Activity
1w
Invitation problem
I was invited to join development team. so after receiving mail to my account I clicked accept invitation button in email. but the page of appstoreconnect shows that link is expired or invalid. however admin Is inviting me 2 min ago. how can I solve this problem? what should I do?
Replies
0
Boosts
0
Views
157
Activity
1w
Reply to Time to register a developer account
Same issue i'm experiencing. I paid on the 14th of April, i received the receipt immediately and can see the subsription active but on web it's still showing pending. I've logged 2 tickets but no response since last week Would really love to get this sorted out asap
Replies
Boosts
Views
Activity
1w