I have a View that has an @ObservedObject it's bound to to display a List of items. When I tap on an item, I navigate to the next screen that uses the same dataset that the previous View is observing. I would like to disable the binding of the @ObservedObject of the previous View when I navigate to the next, otherwise if the data set changes, it tries to refresh the List of the previous View (which is no longer visible) and the app crashes. How can I achieve that?
Search results for
build disappears
49,456 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Two days ago I opened AppStoreConnect, navigated to my app -> Subscriptions and it is empty, we had 6 subscriptions in a group and now they are missing. Though, we still see successful purchases, we can make sandbox purchases in dev mode and receive valid receipts. How can we restore it? We can't control prices, offer codes etc. for existing subscriptions.
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Tags:
App Store Connect
Subscriptions
Hi guys.I believe you all know that Apple has hosted OS X Manual Pages on this site (developer. apple.com) and that section was called Mac OS X Manual Pages. I had been using this website version instead of Terminal version for a long time.The Mac OS X Manual Pages was found:https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/#But couple of days ago this link was no longer accessible. At first i thought it could be some kind of maintenance job temporarily caused the manpages unavilable. But now it's been at least a week and I still can't access the manpages. I did search the website in case they moved it somewhere else, but I could only find manpages for iOS -- and nowhere to find the OSX manpages.Does anyone know where its is now?thanks a lot
Here's a simple C++ program that echoes its arguments... #include int main(int argc, char* argv[]) { for (int i=0; i ./test arg1 #arg2 arg3 0 ./test 1 arg1 2 #arg2 3 arg3 Running under lldb gives this... > lldb ./test arg1 #arg2 arg3 (lldb) target create ./test Current executable set to '/Users/richard/Work/test' (arm64). (lldb) settings set -- target.run-args arg1 #arg2 arg3 (lldb) run Process 6138 launched: '/Users/richard/Work/test' (arm64) 0 /Users/richard/Work/test 1 arg1 Process 6138 exited with status = 0 (0x00000000) I get the same if I quote the arguments, or if I add them to the run line. Stepping into main() we see the argv and args values are as though we only had the first argument. If I quote the second argument and add an initial space #arg1 then it works. I first saw this on an M1 running Sequoia 13.1. It am now on OS 13.3. lldb --version lldb-1600.0.39.109 Apple Swift version 6.0.3 (swiftlang-6.0.3.1.10 clang-1600.0.30.1)
At the moment when you set the App identifier on the Apple Developer web portal you can't check MusicKit as its capability. At first I thought that it is no longer needed as I made some progress and could authorise the app to use MusicKit on device. However whenever it tries to access something I get: [DataRequesting] Failed retrieving tokens for MusicDataRequest.Context(url: https://api.music.apple.com/v1/storefronts/us). Error = .developerTokenRequestFailed. I have tried with one app that was previously set through Apple Developer portal and it works. As soon as I change its bundle identifier (which creates a new app identifier) it has the same problem. And there is no place to check MusicKit anymore, at least not for me.
We are trying to add the Smart App Banner to our website to promote the app, but the banner is not shown. When the page loads, there is a flash of an empty Smart App Banner before it is automatically dismissed. If I put use an app ID of other apps the banner appears. I've triple checked that I'm using the correct app ID. So it seems like it is an issue with my app. I can see my app in the App Store, so I know it's available. I've tested on multiple phones. App ID: 413258417 App Url: https://apps.apple.com/us/app/gnc-livewell/id413258417 Below is the tag used to display banner: - When the page loads, there is a flash of an empty Smart App Banner before it is automatically dismissed. When i use other APP id for ex: Reddit - Banner appears
Environment iPad:10th iOS:18.1 Printer:EPSON PX-S730 Problem In iOS18.1, When printing with AirPrint, PrintCenter is no longer displayed on AppSwitcher. In iOS17, PrintCenter was displayed on AppSwitcher. Question Is this a specification change? I would like to know if there is a way to check PrintCenter on AppSwitcher in the same way as iOS17. Ref No information after iOS18.1 update. https://support.apple.com/ja-jp/109349 There is no mention of AirPrint updates in the AppleDeveloper release notes. https://developer.apple.com/documentation/ios-ipados-release-notes/ios-ipados-18-release-notes https://developer.apple.com/documentation/ios-ipados-release-notes/ios-ipados-18_1-release-notes
Hi all Since updating to the most recent Sonoma Beta on my MacBook Air M2, I have a purple Siri & Dictation dot permanently in the top right corner on videos and streaming sites. I have turned every imaginable thing off for Siri and Dictation, but it's still there. I'm using Chrome. Has anyone else had this problem and have they found a solution for it?
FYI pdm - I've submitted my Messaging app for Beta Testing on TestFlight twice - and both times they just disappear after 24 hours. They start in Review but then when I check back much later, it's gone.My internal testing has a version (though I can't test because I can't receive the email)My extenal testing says You’ve submitted or tested all available builds for this version.Hope this helps.
Topic:
App & System Services
SubTopic:
General
Tags:
Some people have reported that their keyboard extensions have disappeared in iOS 17. When this happens, the keyboard no longer shows up in System Settings or the keyboard switcher. The app can still detect the keyboard, but it doesn’t show up anywhere in iOS. The problem happens for keyboard extensions with a bundle ID that starts with se. on iOS 17.2 and 17.3.1. I haven’t tested on iOS 17.1 yet. Bundle ID The problem only seems to affect a small number of apps, and all investigated so far have had a bundle identifier that started with se. (Swedish top domain) To investigate this, I created some test apps where bundle ID was the only difference, then added a custom keyboard extension to each app. This was the result: ✅ Bundle ID starts with com. - the keyboard shows up. ✅ Bundle ID starts with eu. - the keyboard shows up. 🚨 Bundle ID starts with se. - the keyboard doesn’t show up. ✅ Bundle ID starts with de. - the keyboard shows up. ✅ Bundle ID starts with da. - the keyboard shows up. ✅ Bundle ID st
I've had people reaching out to me that their keyboard extensions started disappearing in iOS 17. As I investigated one, I found that using se. (Swedish top domain) as bundle identifier prefix causes the keyboard to disappear. I wrote more about this issue here, and have reported it to the Feedback Assistant: https://keyboardkit.com/blog/2024/02/12/keyboards-disappear-in-ios-17
Topic:
UI Frameworks
SubTopic:
UIKit
Tags:
My app offers user to subscript vip & buy gems gem (consumable). After purchase succeed, the receipt will be sent to my backend in order to update the gem amount record. There's a checking for updating the gems number on database. However, I find that there're two problems there's only the latest consumable history. The second time buying the gem will erase the previous record. after subscription / renew subscription, the consumable record is gone I'm using sandbox environment. Do 1 & 2 still exist on Real situation? If 1 & 2 still exist on real situation, I've no idea to update the gem if the network fail (network fail: can't get the receipt after purchase gem, at the same time the renew subscription make the get purchase record disappear)
What I found is ?Try to scroll horizontally between the interface controllers inside a root page controller.Randomly after a while (30-1 min).You will find that one of the interface controllers gets missing.Blank view is shown, UI disappears completely. ( Black view with no interface ).Try to open the view debugger in XCode, you will find that the Interface window of the view is missing from the page view controller hierarchy.To reproduceCreate a new application.Create a new Watch applicationAdded 2 additional interface controllers to the storyboardsAdd Identifier for bothInside the initial interface controller callWKInterfaceController.reloadRootPageControllers(withNames: [View1,View2], contexts: [View1,View2], orientation: .horizontal, pageIndex: 1)Run the application on Watch OS 6 Series 3 ( Simulator or A device )Try to scroll randomlyWhat I expect from the Page controller to hold the interface controllers as it should and it shouldn't show a blank black screen, while the user is scrolling.
I have the same issue currently. My storekit items just disappeared after a synch and I can't get them to synch again. I'll add them manually for now but am a bit afraid that they also disappeared in production.
Topic:
App & System Services
SubTopic:
StoreKit
Tags:
I've setup a NavigationLink so users can tap on the image and they're taken to another view, in this case FenderExperience. I can't for the life of me figure out how to make this oval bar behind the image disappear. Is this an Xcode preview issue? I'm running Xcode 15.2 struct BrandImage: View { var body: some View { VStack(alignment: .leading) { NavigationStack { Text(Ralph Lauren) .font(.title) .padding(.bottom, -5) Image(RL) .resizable() .scaledToFit() .frame(width: 300, height: 200) .overlay( RoundedRectangle(cornerRadius: 0) .stroke(Color.white, lineWidth: 2)) Text(Fender) .font(.title) .padding(.bottom, -5) NavigationLink(destination: FenderXperience()) { Image(Fender II) .resizable() .scaledToFit() .frame(width: 300, height: 95) .overlay( RoundedRectangle(cornerRadius: 0) .stroke(Color.white, lineWidth: 2)) } Text(Burton) .font(.title) .padding(.bottom, -5) Image(Burton) .resizable() .scaledToFit() .frame(width: 300, height: 200) .overlay( RoundedRectangle(cornerRadius: 0) .stroke(Color.white,