Search results for

“build disappears”

51,283 results found

Post

Replies

Boosts

Views

Activity

VoIP Call Records Disappearing Issue
Hello! I'm a developer working on developing a telephony service using VoIP. I've been keeping records of calls, but I've noticed some strange behavior. I'm wondering if anyone has experienced similar issues and if there are any solutions. Currently, the setting includesCallsInRecents is set to true. The issues I'm encountering are as follows: Check the records after a voice call. Check the records after a video call. Check the records after another voice call. During the third step, I observed that all records of the second video call disappeared. Does anyone have any insights or assistance regarding this issue? After conducting another video call and checking again, I noticed that previous video call records are displayed along with the new ones. However, when I conduct a voice call, the records disappear again. I'm wondering if this is an operating system bug or if there's a specific place I can check to investigate. Any information would be greatly appreciated!
0
0
647
Dec ’23
View disappearing, then reappearing when following a navigation link
I'm seeing some unexpected behavior when pushing a view using NavigationLink. It seems the source view momentarily disappears, the reappears when pushing the destination view, finally disappearing for good after the transition has completed. You can notice the following output if you use the code below it in a brand new iOS project (from the default Xcode template), run it, and tap on the navigation link. Is this expected behavior? Source appear Source disappear Source appear Destination appear Source disappear struct ContentView: View { tvar body: some View { ttNavigationView { tttVStack { ttttText(Hello, world!).padding() ttttt.onAppear { ttttttprint(Source appear) ttttt} ttttt.onDisappear { ttttttprint(Source disappear) ttttt} ttttNavigationLink( tttttdestination: DestinationView(), tttttlabel: { ttttttText(Navigate) ttttt}) ttt} tt} t} } struct DestinationView: View { tvar body: some View { ttText(Destination View) ttt.onAppear { ttttprint(Destination appear) t
0
0
1k
Jul ’20
Bonjour service disappears
Hi all, I'm porting my app network layer from multipeer connectivity to a sockets layer as a result of this situation (https://forums.developer.apple.com/thread/28934). For the rewrite, I'm using the popular GCDAsyncSocket along with NSNetServices for locating the server service.I wrote a POC app based on a number of examples I have seen out there as well as referring to the apple docs (such as this https://developer.apple.com/library/ios/documentation/Networking/Conceptual/NSNetServiceProgGuide/Articles/PublishingServices.html) and thishttps://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/NetServices/Articles/faq.html#//apple_ref/doc/uid/TP40008762-SW16I've run into a rather intriguing issue where the published service on the server app just disappears without any notification at all. I know it disappears because I am monitoring services via dns-sd utility. This situation manifests when I try to test the scenario of the client going to background then foreground repeatedly.
0
0
1.1k
Jan ’16
APNS Production certificate disappear
Hi. Today found a critical issue. APNs certificates disappears (development and sandbox) in Certificates section. Certificates expiration year - 2022. And now clients not receiving push notifications. I`m not received any emails, notifications from Apple about expiration or removing current certificates. As was say before from new Apple Worldwide Developer Relations. This new intermediate certificate will not affect the availability or functionality of apps you’re already distributing on the App Store. And you can continue to use your existing certificates until they expire. Where I can see audit (logs) whats happened with certificates, who remove? Thanks UPD: If create new APNs certificate this will affect to current application in AppStore? Need I upload new app version?
1
0
1.6k
Mar ’21
nsPredicate disappeared when updated
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
1
0
1.3k
Jul ’21
Navigation bar disappear when rotating view on some devices and simulators
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.
2
0
1.3k
Mar ’21
iOS13, action extension list disappear
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?
0
0
487
Sep ’19
UITextField's text disappeared when focused.
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
3
0
2.1k
Jan ’21
App disappeared after accepted for distribution.
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
1
0
357
Oct ’24
VoIP Call Records Disappearing Issue
Hello! I'm a developer working on developing a telephony service using VoIP. I've been keeping records of calls, but I've noticed some strange behavior. I'm wondering if anyone has experienced similar issues and if there are any solutions. Currently, the setting includesCallsInRecents is set to true. The issues I'm encountering are as follows: Check the records after a voice call. Check the records after a video call. Check the records after another voice call. During the third step, I observed that all records of the second video call disappeared. Does anyone have any insights or assistance regarding this issue? After conducting another video call and checking again, I noticed that previous video call records are displayed along with the new ones. However, when I conduct a voice call, the records disappear again. I'm wondering if this is an operating system bug or if there's a specific place I can check to investigate. Any information would be greatly appreciated!
Replies
0
Boosts
0
Views
647
Activity
Dec ’23
View disappearing, then reappearing when following a navigation link
I'm seeing some unexpected behavior when pushing a view using NavigationLink. It seems the source view momentarily disappears, the reappears when pushing the destination view, finally disappearing for good after the transition has completed. You can notice the following output if you use the code below it in a brand new iOS project (from the default Xcode template), run it, and tap on the navigation link. Is this expected behavior? Source appear Source disappear Source appear Destination appear Source disappear struct ContentView: View { tvar body: some View { ttNavigationView { tttVStack { ttttText(Hello, world!).padding() ttttt.onAppear { ttttttprint(Source appear) ttttt} ttttt.onDisappear { ttttttprint(Source disappear) ttttt} ttttNavigationLink( tttttdestination: DestinationView(), tttttlabel: { ttttttText(Navigate) ttttt}) ttt} tt} t} } struct DestinationView: View { tvar body: some View { ttText(Destination View) ttt.onAppear { ttttprint(Destination appear) t
Replies
0
Boosts
0
Views
1k
Activity
Jul ’20
Reply to Builds disappearing - Unable to upload new version
I am having the same problem with tvOS. I have not made any changes to the Info.plist since my last app release one week ago, but new builds are disappearing from itunes connect. Anybody able to fix this for tvOS?
Replies
Boosts
Views
Activity
Oct ’16
Keyboard disappears when trying to reply a message
Hey all, I have a problem with my iPhone 11 Pro. every time I try to reply a message, on any app, my keyboard just disappears, I can see the message but there is no keyboard, than I close and hit reply again and it works, it drives me insane, is there a solution? thank you.
Replies
0
Boosts
0
Views
227
Activity
Dec ’20
Bonjour service disappears
Hi all, I'm porting my app network layer from multipeer connectivity to a sockets layer as a result of this situation (https://forums.developer.apple.com/thread/28934). For the rewrite, I'm using the popular GCDAsyncSocket along with NSNetServices for locating the server service.I wrote a POC app based on a number of examples I have seen out there as well as referring to the apple docs (such as this https://developer.apple.com/library/ios/documentation/Networking/Conceptual/NSNetServiceProgGuide/Articles/PublishingServices.html) and thishttps://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/NetServices/Articles/faq.html#//apple_ref/doc/uid/TP40008762-SW16I've run into a rather intriguing issue where the published service on the server app just disappears without any notification at all. I know it disappears because I am monitoring services via dns-sd utility. This situation manifests when I try to test the scenario of the client going to background then foreground repeatedly.
Replies
0
Boosts
0
Views
1.1k
Activity
Jan ’16
APNS Production certificate disappear
Hi. Today found a critical issue. APNs certificates disappears (development and sandbox) in Certificates section. Certificates expiration year - 2022. And now clients not receiving push notifications. I`m not received any emails, notifications from Apple about expiration or removing current certificates. As was say before from new Apple Worldwide Developer Relations. This new intermediate certificate will not affect the availability or functionality of apps you’re already distributing on the App Store. And you can continue to use your existing certificates until they expire. Where I can see audit (logs) whats happened with certificates, who remove? Thanks UPD: If create new APNs certificate this will affect to current application in AppStore? Need I upload new app version?
Replies
1
Boosts
0
Views
1.6k
Activity
Mar ’21
Reviews disappeared
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.
Replies
1
Boosts
0
Views
664
Activity
Feb ’23
nsPredicate disappeared when updated
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
Replies
1
Boosts
0
Views
1.3k
Activity
Jul ’21
Navigation bar disappear when rotating view on some devices and simulators
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.
Replies
2
Boosts
0
Views
1.3k
Activity
Mar ’21
Reply to Symbol not found: _$s10Foundation10URLRequestV10httpMethodSSSgvg
@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:
Replies
Boosts
Views
Activity
Oct ’22
iOS13, action extension list disappear
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?
Replies
0
Boosts
0
Views
487
Activity
Sep ’19
UITextField's text disappeared when focused.
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
Replies
3
Boosts
0
Views
2.1k
Activity
Jan ’21
Why does my develop profile disappear after I trust it.
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?
Replies
7
Boosts
0
Views
4.7k
Activity
Oct ’16
App disappeared after accepted for distribution.
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
Replies
1
Boosts
0
Views
357
Activity
Oct ’24
Reply to new builds not show in app store connect
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.
Replies
Boosts
Views
Activity
Jun ’19