Search results for

“build disappears”

51,291 results found

Post

Replies

Boosts

Views

Activity

Legit ratings, maybe reviews, disappearing
I have ratings - possibly reviews - that are disappearing. For example, in “Current Version” the rating just went from 28 stars to 21. Who knows what else has been deleted.I am currently running a free promotion and getting many downloads. Giving away my app is costing me money, so every rating and every review is very important. Why is some Apple computer automatically and arbitrarily deleting legitimate ratings and possibly reviews?I am a one-person independent developer and this is killing my business.
6
0
626
Oct ’15
AR Transparency issues (still disappearing objects)
We still have some issue facing AR transparency. Tried several different versions on the mesh but still no luck. Both solid as single face after recommendation on the forum. The problem is shown in the video. Only issue is go randomly disappearing objects within the object. When viewed from below all objects inside disappear. https://youtu.be/YKrkHiZYJP8
0
0
487
Oct ’21
Selection disappearing in NSTableView inside SwiftUI
I have a SwiftUI view which contains an NSTableView wrapped with an NSViewControllerRepresentable struct. This has a Coordinator, which I set up as the NSTableView's delegate. There is an implementation of tableViewSelectionDidChange to pass the selected row index up to the enclosing view. The problem is that I can click and select a row, but the selection disappears, usually on the first click, and always when clicking a column header to sort. I have looked at the various delegate methods for notifying about selection changing, and they don't seem to be called. How can I find where the selection is being changed?
4
0
2.1k
Mar ’21
XCUIElementTypeToolbar disappears from the page source
I have a problem with test automation of my company app. We're using an external tool called Appium to automate our app, but under the hood it's using XCTest to obtain page source, and it looks like it might not work correctly, or we're doing something wrong. The problem is that since iOS 16.4 XCUIElementTypeToolbar is completely disappearing from the page source XCTest provides to Appium. What's even stranger, it's working when the app is opened for the first time after the phone restart. But when the app is simply put to background and opened again, this toolbar is no longer recognizable and instead of having XCUIElementTypeToolbar with arrows up and down and Done button inside it, XCTest returns only XCUIElementTypeOther there with nothing inside. And the only thing to have it found again is to restart the phone. It's happening in WebView. We are aware that since iOS 16.4 inspectable for WebViews is turned off by default (link to docs), but we have it implemented, and it did not help. It was worki
1
0
412
Sep ’23
Disappearing list
My WatchOS app uses two view controllers with a paged navigation from the first to the second. The first view contains a list. The second view presents a modal. When the modal is closed and I navigate back to the first view controller the list is not visible. The view controllers contains nothing but the body. What can I do to make the list always visible?First viewstruct ContentView: View { var body: some View { List { Text(Hello World) Text(Hello World again) } } }Second viewstruct NextView: View { @State private var showModal = false var body: some View { Button(action: { self.showModal = true }) { Text(Button) }.sheet(isPresented: $showModal) { Text(Modal) } } }
2
0
433
Oct ’19
Cursor Disappearing with Multiple NSTextViews
I have a Mac app, Notenik, written with AppKit, that dynamically generates an Edit view that is used to edit multiple fields for a Note. Sometimes, depending on a user's request, multiple NSTextViews end up appearing within the same parent view (a tab, if that matters). Lately I and some of my users have noticed that, when moving from one NSTextView to another (either by tabbing or by clicking), the cursor initially fails to appear. Once the user starts editing within the NSTextView, the cursor appears and acts normally. And this doesn't occur when moving from an ordinary text field to an NSTextView -- only when moving from one NSTextView to another. But it is troubling and confusing to users that the cursor initially disappears. I'm not sure exactly when this started happening, but it has not been happening for very long. Although I make frequent updates to the app, this section of code has had no recent changes, so I am at a loss to explain this behavior, or to correct it. Any help would be appreci
1
0
1.1k
Jun ’23
Legit ratings, maybe reviews, disappearing
I have ratings - possibly reviews - that are disappearing. For example, in “Current Version” the rating just went from 28 stars to 21. Who knows what else has been deleted.I am currently running a free promotion and getting many downloads. Giving away my app is costing me money, so every rating and every review is very important. Why is some Apple computer automatically and arbitrarily deleting legitimate ratings and possibly reviews?I am a one-person independent developer and this is killing my business.
Replies
6
Boosts
0
Views
626
Activity
Oct ’15
AR Transparency issues (still disappearing objects)
We still have some issue facing AR transparency. Tried several different versions on the mesh but still no luck. Both solid as single face after recommendation on the forum. The problem is shown in the video. Only issue is go randomly disappearing objects within the object. When viewed from below all objects inside disappear. https://youtu.be/YKrkHiZYJP8
Replies
0
Boosts
0
Views
487
Activity
Oct ’21
iOS 9 iCloud drive disappears from Settings
Did anyone encounter a problem where iCloud becomes unavailable? The drive disappears from Settings unders iCloud settings and naturally apps such as pages can't access the documents.Any solution?
Replies
2
Boosts
0
Views
416
Activity
Jun ’15
Apple Staff, what is going on with the disappearing TestFlight app?
The number of users reporting TestFlight disappearing is increasing. Can one of the Apple Staff please give us some insight into this (i.e. TidBits, mwhuss, justin.voss, blakeseely)? Thank you.
Replies
15
Boosts
0
Views
4.2k
Activity
Oct ’15
Push notification disappearing with in second from the lock screen!
Push notification disappearing with in second from the lock screen! When we use our app to send push notification it dissappear within seconds or stay for few seconds and sometime its just the sound. Please guide me thank you :(
Replies
7
Boosts
0
Views
10k
Activity
Feb ’16
UILabel Disappear From Static UITableViewCell with Dynamic Type
Hello everyone!I have a same problem, that was descriped in below Stackoverflow link :http://stackoverflow.com/questions/26330560/uilabel-disappear-from-static-uitableviewcell-with-dynamic-typeWho can explain to me why it is so? Is this a bug?
Replies
1
Boosts
0
Views
1.3k
Activity
Oct ’16
Selection disappearing in NSTableView inside SwiftUI
I have a SwiftUI view which contains an NSTableView wrapped with an NSViewControllerRepresentable struct. This has a Coordinator, which I set up as the NSTableView's delegate. There is an implementation of tableViewSelectionDidChange to pass the selected row index up to the enclosing view. The problem is that I can click and select a row, but the selection disappears, usually on the first click, and always when clicking a column header to sort. I have looked at the various delegate methods for notifying about selection changing, and they don't seem to be called. How can I find where the selection is being changed?
Replies
4
Boosts
0
Views
2.1k
Activity
Mar ’21
XCUIElementTypeToolbar disappears from the page source
I have a problem with test automation of my company app. We're using an external tool called Appium to automate our app, but under the hood it's using XCTest to obtain page source, and it looks like it might not work correctly, or we're doing something wrong. The problem is that since iOS 16.4 XCUIElementTypeToolbar is completely disappearing from the page source XCTest provides to Appium. What's even stranger, it's working when the app is opened for the first time after the phone restart. But when the app is simply put to background and opened again, this toolbar is no longer recognizable and instead of having XCUIElementTypeToolbar with arrows up and down and Done button inside it, XCTest returns only XCUIElementTypeOther there with nothing inside. And the only thing to have it found again is to restart the phone. It's happening in WebView. We are aware that since iOS 16.4 inspectable for WebViews is turned off by default (link to docs), but we have it implemented, and it did not help. It was worki
Replies
1
Boosts
0
Views
412
Activity
Sep ’23
I had a mailbox folder disappear from the sidebar listing. It has not been deleted as I can search for known saved emails and they are found. Anyway to make the disappeared mailbox folder visible again?
I had a mailbox folder disappear from the sidebar listing. It has not been deleted as I can search for known saved emails and they are found. Anyway to make the disappeared mailbox folder visible again?
Replies
1
Boosts
0
Views
1.1k
Activity
Jun ’17
Reply to Builds disappearing - Unable to upload new version
I've uploaded 10 builds today, but all with all keys, wtithout bitcode & etc disappeared after 3-5 seconds. Support didn't answer. I don't what I need to do. Maybe, smb have any ideas?Thanks
Replies
Boosts
Views
Activity
Jan ’17
PKDrawing Disappearing
I am having trouble getting the drawing made using PencilKit to stay on the screen when I move to a different tab within the app (e.g. go from drawing tab to contact form tab). I want whatever strokes were made to be retained when the user switches between tabs and comes back to allow the to resume where they left off. How can this be done?
Replies
0
Boosts
0
Views
482
Activity
Jul ’20
Disappearing list
My WatchOS app uses two view controllers with a paged navigation from the first to the second. The first view contains a list. The second view presents a modal. When the modal is closed and I navigate back to the first view controller the list is not visible. The view controllers contains nothing but the body. What can I do to make the list always visible?First viewstruct ContentView: View { var body: some View { List { Text(Hello World) Text(Hello World again) } } }Second viewstruct NextView: View { @State private var showModal = false var body: some View { Button(action: { self.showModal = true }) { Text(Button) }.sheet(isPresented: $showModal) { Text(Modal) } } }
Replies
2
Boosts
0
Views
433
Activity
Oct ’19
Reply to Upload Symbols Failed on Xcode 16
This steps works for me Edit Scheme... Check left side menu Archive make sure Build Configuration is Release (For me it is Debug and cause the issue so I change to Release theื rebuild the archive and the issue disappears.
Replies
Boosts
Views
Activity
Oct ’24
Contacts disappeared and iMessages stopped working
HI, Running Catalina, MacBook Pro retina (15, late 2013) All the contacts have disappeared, and iMessages no longer syncs works. In system pref, Contacts is turned on, But contacts says no card? iMessages only has texts from other iPhone users, although the contact details show, that aren't accessible. Need help
Replies
0
Boosts
0
Views
429
Activity
Jan ’21
Cursor Disappearing with Multiple NSTextViews
I have a Mac app, Notenik, written with AppKit, that dynamically generates an Edit view that is used to edit multiple fields for a Note. Sometimes, depending on a user's request, multiple NSTextViews end up appearing within the same parent view (a tab, if that matters). Lately I and some of my users have noticed that, when moving from one NSTextView to another (either by tabbing or by clicking), the cursor initially fails to appear. Once the user starts editing within the NSTextView, the cursor appears and acts normally. And this doesn't occur when moving from an ordinary text field to an NSTextView -- only when moving from one NSTextView to another. But it is troubling and confusing to users that the cursor initially disappears. I'm not sure exactly when this started happening, but it has not been happening for very long. Although I make frequent updates to the app, this section of code has had no recent changes, so I am at a loss to explain this behavior, or to correct it. Any help would be appreci
Replies
1
Boosts
0
Views
1.1k
Activity
Jun ’23