Our ratings have been cut in half in the last few days, and any new ones are not showing up. Any ideas? Very frustrating for a newly launched app.
Search results for
build disappears
49,264 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I create a project open action extension list, there is an Edit Actions... button under the list. But if I switch off all actions and clicked done, the button disappear and there is no way I can re-switch on any actions in this project. Is it a OS bug or I need change some code in host app / containing app to make it appear?
I am working on a SwiftUI project and in a subview I use @FetchRequest to fetch data from CoreData. I have a menu to let user select which data to fetch, and by default I want to fetch all datas. The problem is when user open the menu and select a category then it refetch the data, it's correct and when user close the menu, the nsPredicate that the user have given will disappear and switch to the default predicate. I tried to write the same pattern code on 'EarthQuake' sample app, it has the same problem. And here is the code: List(selection: $selection) { ListView(search: $searchText) } .background(toggle ? Color.red.opacity(0.01) : nil) .toolbar { ToolbarItem(placement: .bottomBar) { Button { toggle.toggle() } label: { Text(Toggle) } } } .searchable(text: $searchText) ListView: struct ListView: View { @FetchRequest(sortDescriptors: [SortDescriptor(.time, order: .reverse)]) // predicate: nil private var quakes: FetchedResults @Binding var search: String var body: some View { ForEach(quakes, id: .cod
I created an app with Xcode and manually put it in my iPhone then I trusted myself as a developer. I did that 2 times and both times the app worked perfectly but after a few days both times the profile in setting>General>profile disappears and I can't open the app anymore. How do I fix that so my profile stays permanently in settings?
@eskimo Yes, that's how we discovered that bug. An user reported the crash while using a TestFlight build on its device. (I can't comment on your reply, my reply disappears as soon as I refresh the page, don't know why)
Topic:
App & System Services
SubTopic:
General
Tags:
As title, i have three view A, B and C view, and i use NavigationLink from A to B and from B to C without NavigationView except A.The NavigationBar disappear when i rotate to landscape and back to portrait in B or C views on some device. There are devices tested so far: NavigationBar disappear: iPhone XR iOS 14.4 no disappear: iPhone XS iOS 14.4 tested on simulator: device: i8, i8plus, 11, 11pro, version: iOS 13.0, 14.3 NavigationBar disappear: iPhone 8 Plus, iPhone 11 on iOS 14.3 and the others didn't disappear is there a bug for SwiftUI? or is a problem for specific devices? Thanks.
I uploaded a version which appeared for a while under macOS Builds tab as Processing for a while then totally disappeared. Tried to re-upload but it shows that there is already a version online. Guess I would have to wait and see if it appears by tomorrow.
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Tags:
I had the same issue. It seems that if you go to the build settings and update DEBUG_INFORMATION_FORMAT to DWARF and back to DWARF with dSYM File it adds some new DEBUG_INFORMATION_FORMAT = dwarf-with-dsym; entries to the project file and this warning disappears.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
My view has several textfields for register. The problem is when I focus on a textfield to update, the text and the caret in the textfield disappeared (but it still stores the value). The text value only appears after the textfield lost keyboard focus. This error happen with all the devices I have (iPhone 12, iPad), all the simulators I tried. The only thing that works fine is when I using the simulator, I typed in textfield by my Mac physical keyboard instead of simulator's onscreen keyboard. I'm new in iOS and Swift so please can you help me to resolve this. I could provide UI Hierarchy if needed
After my app was approved for distribution I was filling out the contract information and when I went back to the Apps section my app had disappeared. Now when I try to log back in I am directed to a “We cannot process your request”. I tried all browsers and several devices and was able to log back in but the Apps page is still blank. I have not heard back from Apple Support. If anyone has any suggestions it would be much appreciated. thanks
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Hi,I've been making a podcast for a couple month and everything was fine but now it seems to disapear in itunes store. I also discovered a big in my wordpress page code which made my website look strange and also affected the RSS (http://magazynszosa.pl/feed/podcast) that page generates for itunes. So, maybe Itunes forgot my podcast? Now the RSS is fine again and I wonder if I just should wait a bit and let itunes realize it's ok or should I notify Apple? If so, which contact should I use? Thanks
Hi everyone,So I have a ViewController, inside it i have a TableView and at the bottom of it a View that contains a TextField and a Button.When the keyboard appears I tried to put the View at the bottom just above the keyboard and my View appears only if I put my View in front like this :self.view.bringSubviewToFront(SendMessageView)(Just to be clear my View is visble and I can see it, it only dissapears when I try to move it on top of the keyboard when it appears)So now that I can see my View when I mooved it above the keyboard, when I begin to type something my View dissapears instantly and I hane no clue why and I don't know how to fix this.I hope I explained my problem clearly, and of course if needed I can post more of my code, I tried to put a screenshot in the post but it didn't work.Thanks in advance,Arkning
Our app, which is still available on the App Store, has suddenly disappeared entirely from Apple Store Connect. Although it can still be found on the App Store, we are unable to locate it in Apple Store Connect for management. Just a few days ago, it was successfully submitted for review, and its status was Pending Developer Release. However, today when we were preparing to release it, we logged into Apple Store Connect and found that the app had completely disappeared and couldn't be found even in the Removed Apps section. Our App Store Link
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
Hello, I am an audio developer, currently using macOS version 14.1.1. I noticed that after disabling the microphone, the small yellow dot in the Control Center disappears immediately, but the one in the menu bar takes about 20 seconds to disappear. I tested the built-in Voice Memos app and found the same behavior. Our users may be concerned about their privacy being violated, even though the software is not using the microphone at that time. We believe this is a bug, and the microphone icon in the menu bar should disappear immediately after the microphone is no longer in use. Do you have plans to fix this issue in future versions? Additionally, is there any workaround for the current version? As a supplement, we are using CoreAudio API with AudioDeviceStart & AudioDeviceStop, not AudioUnit.
I converted my Chrome extension to a Safari web extension using this converter. I then run the extension in xcode (macOS (App)) open the app allow unsigned extensions in Safari select the checkbox in Extension settings, giving it permission to run The extension icon then shows up in Safari where its supposed to. However, whenever I click on the icon to test the extension, nothing opens and the icon disappears. Is there an extra step I'm missing?