Search results for

“build disappears”

51,301 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
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
548
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
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
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
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
Zoom navigation causes the source view to disappear
After returning from the child view to the parent, the latter one will simply disappear. This is the full view. See itemsContent where I perform the navigation. The last tapped rectangle in this example will simply disappear. struct DashboardView: View { @State var viewModel: DahsboardViewModel @Namespace private var namespace var body: some View { ScrollView(.vertical) { LazyVStack(spacing: 24) { ForEach(viewModel.sections) { section in VStack(spacing: 16) { Text(section.title) itemsContent(for: section) } } } } } func itemsContent(for section: DashboardSection) -> some View { ForEach(section.items) { item in NavigationLink { PatternLearningRouter().rootView .id(item.id) .navigationTransition(.zoom(sourceID: item.id, in: namespace)) } label: { Rectangle() .fill(Color.yellow) .frame(width: 80, height: 80) .overlay { Text(item.title) } .matchedTransitionSource(id: item.id, in: namespace) } } } } XCode26 26.0.1(17A400) iPhone 16 Pro, iOS 26.0.1 Note: Only reproduced when I swipe back (not r
0
0
87
Oct ’25
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
In-App purchase buttons disappeared when App published on iTunes
My App just launched on iTunes... but the in-app purchase buttons disappeared from the app. They worked great in TestFlight... did it happen to anyone ? I'm stuck because people will are able to download the app but not subscribe !
Replies
2
Boosts
0
Views
280
Activity
Dec ’16
Xcode: “Hide Navigator” ⌘, 0 stopped working. Why did it disappear?
In Xcode, there is a keyboard shortcut to hide the navigator, ⌘,0. But it stopped working. I went to system preferences and manually added it back a few days ago but it disappeared again today suddenly. Why does this keep happening?
Replies
3
Boosts
0
Views
2.2k
Activity
Dec ’20
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
213
Activity
Dec ’25
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
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
548
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
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
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
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
Zoom navigation causes the source view to disappear
After returning from the child view to the parent, the latter one will simply disappear. This is the full view. See itemsContent where I perform the navigation. The last tapped rectangle in this example will simply disappear. struct DashboardView: View { @State var viewModel: DahsboardViewModel @Namespace private var namespace var body: some View { ScrollView(.vertical) { LazyVStack(spacing: 24) { ForEach(viewModel.sections) { section in VStack(spacing: 16) { Text(section.title) itemsContent(for: section) } } } } } func itemsContent(for section: DashboardSection) -> some View { ForEach(section.items) { item in NavigationLink { PatternLearningRouter().rootView .id(item.id) .navigationTransition(.zoom(sourceID: item.id, in: namespace)) } label: { Rectangle() .fill(Color.yellow) .frame(width: 80, height: 80) .overlay { Text(item.title) } .matchedTransitionSource(id: item.id, in: namespace) } } } } XCode26 26.0.1(17A400) iPhone 16 Pro, iOS 26.0.1 Note: Only reproduced when I swipe back (not r
Replies
0
Boosts
0
Views
87
Activity
Oct ’25