Search results for

“build disappears”

51,332 results found

Post

Replies

Boosts

Views

Activity

iOS 14 .onAppear() is called on DISappear instead of appear
I've got a View with .onAppear(perform: { print(appear) }) .onDisappear(perform: { print(disappear) }) set on it. In iOS 13.5, when I navigate away from the view via a NavigationLink, it prints disapear; when I close the new view and get back to the first view appear gets printed. All as it should be. Now in iOS 14, this happens instead: when the view is first shown, it prints appear when navigating away from the view, it prints disappear and appear when navigating back to the view, nothing gets printed when navigating away from the view, then appear gets printed, along with the expected disappear ...is this some new super-lazy way of doing things or just plain a bug? It runs havoc with my login, as I set @Binding vars in the second view, which are evaluated back in the first view when .onAppear() runs. Worked great until iOS 14...
36
0
24k
Jul ’20
Reply to Missing "Download Size" column in "App Store File Sizes" in iTunes Connect
I can confirm that the Compressed File Size literally appears and disappears randomly! Right now I have the same build open in two tabs, one has the Compressed File Size displayed, the other is missing it completely. It is a build from two days ago that is fully approved. Most of the time the Compressed File Size will not be displayed though, it's some rare thing you happen to see now and again lol.
Mar ’25
Reply to Game Center invite fails immediately
We're seeing a similar problem with our custom UI invites to real time matches. We find that making arbitrary changes to the build version number can make the issue disappear/reappear. Have filed a radar: 26717939Perhaps as robatmac says, keeping the build and version numbers the same as the store build until right before the update might be the way to go. But making a last minute change that you know will break your dev build, then trusting that it'll magically be fixed by iTunesConnect after release makes me uncomfortable.
Topic: Graphics & Games SubTopic: GameKit Tags:
Jun ’16
Context menu item disappears in Safari Extension with Manifest v3
I'm trying to convert an existing Chrome Extension to Safari Web Extension. Immediately after convert, xcode opens and I build the project. Everything looks perfect in Safari: the popup works fine, the context menu item is there, options are there. The moment I restart Safari, the context menu item disappears and service worker is not loaded. My Manifest v3: background: { service_worker: js/background.js }, permissions: [ contextMenus, activeTab, storage ], My background script: chrome.contextMenus.removeAll(() => { chrome.contextMenus.create(properties); });
0
0
600
May ’22
How to know when TestFlight intro screens appear and disappear?
TestFlight is great, and the intro screens that appear when a tester launches your app for the first time are very helpful. However, I want to know when those screens appear, and when they disappear, so I can pause audio playback and resume it. Right now audio plays under these screens and it's not ideal. I tried hooking into viewWillDisappear and viewWillAppear on the initial UIViewController, but the TestFlight intro screens do not trigger these.
1
0
549
Oct ’20
Reply to "App Store File Sizes" missing
I can confirm that the Compressed File Size literally appears and disappears randomly! Right now I have the same build open in two tabs, one has the Compressed File Size displayed, the other is missing it completely. It is a build from two days ago that is fully approved. Most of the time the Compressed File Size will not be displayed though, it's some rare thing you happen to see now and again lol.
Mar ’25
visionOS NavigationSplitView - Refreshable ProgressView Disappears
Description I've encountered an issue with NavigationSplitView on visionOS when using a refreshable ScrollView or List in the detail view. The Problem: When implementing pull-to-refresh in the detail view of a NavigationSplitView, the ProgressView disappears and generates this warning: Trying to convert coordinates between views that are in different UIWindows, which isn't supported. Use convertPoint:fromCoordinateSpace: instead. I discovered that if the detail view includes a .navigationTitle(), the ProgressView remains visible and works correctly! Below is a minimal reproducible example showing this behavior. When you run this code, you'll notice: The sidebar refreshable works fine The detail refreshable works only when .navigationTitle(Something) is present Remove the navigationTitle and the detail view's refresh indicator disappears minimal Demo import SwiftUI struct MinimalRefreshableDemo: View { @State private var items = [Item 1, Item 2, Item 3] @State private var detailItems = [Detai
1
0
96
May ’25
SwiftUI sheet disappears without transition
Hello, I have a sheet included in my App where the user can set a goal to achieve. The transition when the sheet disappears is performed well, as long as I don't switch the tab in my custom tab bar. As soon as I go to another tab, go back to the initial tab and try to open the sheet, it appears with a transition but disappears completely without a transition. I hope there is somebody who can help me. The Button that opens the sheet: //Button to show DailyGoalSetting screen/ Button(action: { //Opens DailyGoalSetting up self.showGoalSetting.toggle() }) { Image(icon_editgoal).foregroundColor(ThemeManager.Theme.current.buttonColor) } .sheet(isPresented: self.$showGoalSetting, content: { /Initialiser for DailyGoalSetting/ DailyGoalSetting(dailyGoal: self.$dailyGoal, showMe: self.$showGoalSetting) }) The sheet: NavigationView { VStack{ Form { //TextField to enter the goal //With some stylings TextField(Enter goal..., text: $textFieldManager.userInput) .multilineTextAlignment(.leading) .keyboardTyp
0
0
1.2k
Nov ’20
Apps in Library disappear
before like 15 mins ago, i was watching something on Instagram and back to Library to open Discord App when all my applications was gone from Library until i restarted my phone and everything was back, maybe it’s a bug or something. IOS 26 Beta 3
0
0
80
Jul ’25
Toolbar and title disappear when interacting with view
Hello! I'm developing a Watch app, that's required to receive images from iPhone occasionally. Since the user will need their hands free, they have to inspect those images on Watch, which is why I added a rudimentary image viewer, allowing users to zoom in on images and pan around. As soon as the user pans or zooms, toolbar and title will disappear. This happens in simulator and on my colleague's Watch (A2376), but not on mine (A2356)! Tested both on watchOS 9.6.2 and 10.0.1. Here's a code excerpt: // View is presented on a sheet TabView(selection: $viewing) { ForEach(images) { reference in reference.img .resizable() .aspectRatio(contentMode: .fit) .scaleEffect(scale) .offset(offset + draggingOffset) .frame(width: screenSize.width, height: screenSize.height-1) .clipped() .id(reference.id) .gesture(panGesture, including: .gesture) .gesture(tapZoomGesture) .navigationTitle(viewerTitle) // .toolbar(content: { // ToolbarItem(placement: .cancellationAction) { // viewerToolbar // } // }) .focusable() .digi
1
0
940
Oct ’23
iOS 14 .onAppear() is called on DISappear instead of appear
I've got a View with .onAppear(perform: { print(appear) }) .onDisappear(perform: { print(disappear) }) set on it. In iOS 13.5, when I navigate away from the view via a NavigationLink, it prints disapear; when I close the new view and get back to the first view appear gets printed. All as it should be. Now in iOS 14, this happens instead: when the view is first shown, it prints appear when navigating away from the view, it prints disappear and appear when navigating back to the view, nothing gets printed when navigating away from the view, then appear gets printed, along with the expected disappear ...is this some new super-lazy way of doing things or just plain a bug? It runs havoc with my login, as I set @Binding vars in the second view, which are evaluated back in the first view when .onAppear() runs. Worked great until iOS 14...
Replies
36
Boosts
0
Views
24k
Activity
Jul ’20
Reply to Missing "Download Size" column in "App Store File Sizes" in iTunes Connect
I can confirm that the Compressed File Size literally appears and disappears randomly! Right now I have the same build open in two tabs, one has the Compressed File Size displayed, the other is missing it completely. It is a build from two days ago that is fully approved. Most of the time the Compressed File Size will not be displayed though, it's some rare thing you happen to see now and again lol.
Replies
Boosts
Views
Activity
Mar ’25
Reply to Game Center invite fails immediately
We're seeing a similar problem with our custom UI invites to real time matches. We find that making arbitrary changes to the build version number can make the issue disappear/reappear. Have filed a radar: 26717939Perhaps as robatmac says, keeping the build and version numbers the same as the store build until right before the update might be the way to go. But making a last minute change that you know will break your dev build, then trusting that it'll magically be fixed by iTunesConnect after release makes me uncomfortable.
Topic: Graphics & Games SubTopic: GameKit Tags:
Replies
Boosts
Views
Activity
Jun ’16
Context menu item disappears in Safari Extension with Manifest v3
I'm trying to convert an existing Chrome Extension to Safari Web Extension. Immediately after convert, xcode opens and I build the project. Everything looks perfect in Safari: the popup works fine, the context menu item is there, options are there. The moment I restart Safari, the context menu item disappears and service worker is not loaded. My Manifest v3: background: { service_worker: js/background.js }, permissions: [ contextMenus, activeTab, storage ], My background script: chrome.contextMenus.removeAll(() => { chrome.contextMenus.create(properties); });
Replies
0
Boosts
0
Views
600
Activity
May ’22
The Liquid Glass effect disappeared after being released online
Hello, the Liquid Glass effect of iOS 26 was possible during development, but it disappeared after its release and launch. I haven't found the reason for this, could you please help me clarify
Topic: UI Frameworks SubTopic: UIKit
Replies
3
Boosts
0
Views
215
Activity
Dec ’25
How to know when TestFlight intro screens appear and disappear?
TestFlight is great, and the intro screens that appear when a tester launches your app for the first time are very helpful. However, I want to know when those screens appear, and when they disappear, so I can pause audio playback and resume it. Right now audio plays under these screens and it's not ideal. I tried hooking into viewWillDisappear and viewWillAppear on the initial UIViewController, but the TestFlight intro screens do not trigger these.
Replies
1
Boosts
0
Views
549
Activity
Oct ’20
Reply to "App Store File Sizes" missing
I can confirm that the Compressed File Size literally appears and disappears randomly! Right now I have the same build open in two tabs, one has the Compressed File Size displayed, the other is missing it completely. It is a build from two days ago that is fully approved. Most of the time the Compressed File Size will not be displayed though, it's some rare thing you happen to see now and again lol.
Replies
Boosts
Views
Activity
Mar ’25
visionOS NavigationSplitView - Refreshable ProgressView Disappears
Description I've encountered an issue with NavigationSplitView on visionOS when using a refreshable ScrollView or List in the detail view. The Problem: When implementing pull-to-refresh in the detail view of a NavigationSplitView, the ProgressView disappears and generates this warning: Trying to convert coordinates between views that are in different UIWindows, which isn't supported. Use convertPoint:fromCoordinateSpace: instead. I discovered that if the detail view includes a .navigationTitle(), the ProgressView remains visible and works correctly! Below is a minimal reproducible example showing this behavior. When you run this code, you'll notice: The sidebar refreshable works fine The detail refreshable works only when .navigationTitle(Something) is present Remove the navigationTitle and the detail view's refresh indicator disappears minimal Demo import SwiftUI struct MinimalRefreshableDemo: View { @State private var items = [Item 1, Item 2, Item 3] @State private var detailItems = [Detai
Replies
1
Boosts
0
Views
96
Activity
May ’25
SwiftUI sheet disappears without transition
Hello, I have a sheet included in my App where the user can set a goal to achieve. The transition when the sheet disappears is performed well, as long as I don't switch the tab in my custom tab bar. As soon as I go to another tab, go back to the initial tab and try to open the sheet, it appears with a transition but disappears completely without a transition. I hope there is somebody who can help me. The Button that opens the sheet: //Button to show DailyGoalSetting screen/ Button(action: { //Opens DailyGoalSetting up self.showGoalSetting.toggle() }) { Image(icon_editgoal).foregroundColor(ThemeManager.Theme.current.buttonColor) } .sheet(isPresented: self.$showGoalSetting, content: { /Initialiser for DailyGoalSetting/ DailyGoalSetting(dailyGoal: self.$dailyGoal, showMe: self.$showGoalSetting) }) The sheet: NavigationView { VStack{ Form { //TextField to enter the goal //With some stylings TextField(Enter goal..., text: $textFieldManager.userInput) .multilineTextAlignment(.leading) .keyboardTyp
Replies
0
Boosts
0
Views
1.2k
Activity
Nov ’20
LazyVStack child disappears off screen before its off screen.
I have a scroll view with one item in it. When is scroll it under a the navigation bar it disappears before the whole cell is gone it seems to be about when ½ the cell is disappeared. Simple LazyVStack NavigationView { ZStack { ScrollView { LazyVStack { ForEach(model.wallets, id: .id) { wallet in GalleryCell(wallet: wallet) } } } }
Replies
0
Boosts
0
Views
1.1k
Activity
Nov ’21
App disappeared from rankings
Final Fantasy XV: A New Empire has suddenly stopped ranking on 18/10 in top 500. Just a day before it was ranking no.4. Please advise.Many thanks
Replies
0
Boosts
0
Views
473
Activity
Nov ’17
Application loader has disappeared.
I don't understant why, Application loader was still there today, it was open. I closed it earlier today, and this evening I open Xcode, it installs component I don't know why and when I look in the menu no more Application Loader in the developper tools...***???? Where Application loader is gone????????
Replies
11
Boosts
0
Views
34k
Activity
Sep ’19
My Developer certificates disappeared
This morning I discovered that all of my Apple developer certificates are gone from dev.apple.com I'm certain at least one was there last week. I am trying to get Fastlane to work. (Though it seems far more trouble than cure). Why would my developer certificate be completely gone? What will happen to my existing apps?
Replies
2
Boosts
0
Views
775
Activity
Jan ’21
Apps in Library disappear
before like 15 mins ago, i was watching something on Instagram and back to Library to open Discord App when all my applications was gone from Library until i restarted my phone and everything was back, maybe it’s a bug or something. IOS 26 Beta 3
Replies
0
Boosts
0
Views
80
Activity
Jul ’25
Toolbar and title disappear when interacting with view
Hello! I'm developing a Watch app, that's required to receive images from iPhone occasionally. Since the user will need their hands free, they have to inspect those images on Watch, which is why I added a rudimentary image viewer, allowing users to zoom in on images and pan around. As soon as the user pans or zooms, toolbar and title will disappear. This happens in simulator and on my colleague's Watch (A2376), but not on mine (A2356)! Tested both on watchOS 9.6.2 and 10.0.1. Here's a code excerpt: // View is presented on a sheet TabView(selection: $viewing) { ForEach(images) { reference in reference.img .resizable() .aspectRatio(contentMode: .fit) .scaleEffect(scale) .offset(offset + draggingOffset) .frame(width: screenSize.width, height: screenSize.height-1) .clipped() .id(reference.id) .gesture(panGesture, including: .gesture) .gesture(tapZoomGesture) .navigationTitle(viewerTitle) // .toolbar(content: { // ToolbarItem(placement: .cancellationAction) { // viewerToolbar // } // }) .focusable() .digi
Replies
1
Boosts
0
Views
940
Activity
Oct ’23