Search results for

“build disappears”

51,328 results found

Post

Replies

Boosts

Views

Activity

Reply to Build Processing Emails Down
I'm not receiving the emails, and my MacOS builds show up temporarily in TestFlight, but then disappear as if they were never uploaded. iOS Builds are working fine. I've tried uploading MacOS Builds from Transporter 3 times in the last 24 hours, and the same thing has happened every time. My MacOS App ID is: 1494196015 Please help ASAP - need to get a critical bug fix out. Thank you
Apr ’23
List rows disappearing when scrolling
I have a List containing ItemRow views based on an ItemDetails object. The content is provided by a model which pulls it from Core Data. When I scroll through the list one or two of the rows will disappear and reappear when I scroll back up. I have a feeling it's because the state is being lost? Here's some relevant info (only necessary parts of the files are provided): -- ModelData.swift: @Observable class ModelData { var allItems: [ItemDetails] = coreData.getAllItems() ... } -- ItemDetails.swift: struct ItemDetails: Identifiable, Hashable, Equatable { public let id: UUID = UUID() public var itemId: String // Also unique, but used for a different reason ... } -- MainApp.swift: let modelData: ModelData = ModelData() // Created as a global class SceneDelegate: UIResponder, UIWindowSceneDelegate { // Methods in here (and in lots of other places) use `modelData`, which is why it's a global } @main struct MainApp: App { var body: some Scene { WindowGroup { MainView() } } ... } -- MainView.swift: struct M
2
0
177
Oct ’25
DisplayMessageAction can I know its disappearance event
I use Message and SwiftUI Environment display an App Store message,I want to know the event or callback when the App Store message action disappears My project is UIKit frame,So I had to use UIKit call SwiftUI, I have a transparent UIHostingController and root view is SwiftUI,I want to pop this UIHostingController when the user dismiss the App Store message action。 import StoreKit import SwiftUI @available(iOS 16.0, *) struct SwiftUIView: View { @Environment(.displayStoreKitMessage) private var displayStoreMessage var body: some View { HStack { } .onAppear() { DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 0.2) { YKAppStoreMessagesManager.sharedManager.displayAction = displayStoreMessage } } } } public final class TransparentHostingController: UIHostingController { public override func viewDidLoad() { super.viewDidLoad() view.isOpaque = false view.backgroundColor = UIColor(red: 0, green: 0, blue: 0, alpha: 0.3) } } @available(iOS 16.0, *) @objcMembers public class YKAppStoreMessagesMana
0
0
649
Apr ’23
Mapkit JS - mapkit.MarkerAnnotation title disappeared from below
One time title was showing below the MarkerAnnotation and I noticed, that once it disappeared and now it is showing inside the marker if you click on it. Is it possible to move it back and show it below the marker? The field, that I am using for this purpose is called title navigator.userAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36
1
0
762
Oct ’23
Windows launched by agents disappear when I click on it
Hi, I'm new in this forum and I have a strange behaviour compared to the a previous MacOS version. In fact, in MacOS 10.14, I have a script who launch some agents and these agents displays smalls windows in the desktop. Now we have some machine in MacOS 11.6 and we would like to replicate this feature. So, when I run the script that launch the agents, the agents also display these windows like in the previous version of MacOS : Nevertheless, I noticed that the behavior is different between the 2 versions of MacOS. In MacOS 11.6 when a select one of the window and then I click anywhere in the desktop, the window disappear even if the icon of the window remain in the deck. For instance, if a select Window 3 and the click in the desktop, the Window is not displayed anymore like this : If a perform the same test for Window 2 (select the window and then click on the desktop) it also not displays like this: After that, if I click in the icon of the Window 3, this screen is displayed again (this window is n
0
0
287
Nov ’21
DisplayMessageAction can I know its disappearance event
I use Message and SwiftUI Environment display an App Store message,I want to know the event or callback when the App Store message action disappears My project is UIKit frame,So I had to use UIKit call SwiftUI, I have a transparent UIHostingController and root view is SwiftUI,I want to pop this UIHostingController when the user dismiss the App Store message action。 import StoreKit import SwiftUI @available(iOS 16.0, *) struct SwiftUIView: View { @Environment(.displayStoreKitMessage) private var displayStoreMessage var body: some View { HStack { } .onAppear() { DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 0.2) { YKAppStoreMessagesManager.sharedManager.displayAction = displayStoreMessage } } } } public final class TransparentHostingController<Content: View>: UIHostingController<Content> { public override func viewDidLoad() { super.viewDidLoad() view.isOpaque = false view.backgroundColor = UIColor(red: 0, green: 0, blue: 0, alpha: 0.3) } } @available(iOS 16.0, *) @objcMembers
0
0
492
Apr ’23
Folders and Files disappeared from Finder and iCloud!
Hi, I have recently bought a new MacBook Pro (Sonoma) and after installed several software I realised that the folders that were on the Finder disappeared from the Mac and iCloud. I read countless forums and tried different option as well as third-party software to see if they are still in it, but nothing. I was a bit concerned that leaving the filed only on iCloud was too risky. After some manoeuvres the folders, ONLY, reappeared in the Downloads folder (even if it was not their path). Is there anyone can help me with this? One of the folder was a music folder (I am a musician and dj) and there are my last 15 years, and I would like not to lose it. Thank you in advance for your help. Mike
0
0
535
Jul ’24
USB Audio Mixer Keeps Disappearing
I have connected a USB audio mixer to my iMac, but the machine keeps losing the connection. Specifically, when I look in Sound Preferences. For a solid week, I could hear and use the mic through the mixer without an issue. The mixer showed up as IOUSBHOST. However, this morning the mixer is now showing up in Sound Preferences as JieLi BR17 and it keeps bugging out, i.e., it will show up on the list and then disappear taking my audio I/O for a ride in the process. A major problem when I'm delivering virtual workshops and classes. How do I get my iMac to recognize the mixer using the IOUSBHOST protocol? Frankly, how do I fix this problem. Thanks for any insight and help on this. Fair warning: not a developer but willing to do the learning to get my set up working.
4
0
1.8k
Jun ’21
Reply to tvOS / Xcode 12 Expected a type "UISplitViewControllerStyle"
Finally figured this out. It turns out the problem was that the version of Xcode set by xcode-select was the store version of Xcode (11.7). Once Xcode 12 was released & I installed the update the problem inexplicably disappeared. However, our build server still hade Xcode 11.7 set as the default with xcode-select (even though the build was actually using Xcode 12), so when I pushed a build of our tvOS app the problem showed back up. It took several days of mucking around before it finally occurred to try changing the version of Xcode set with xcode-select. When I set Xcode 12 as the default with xcode-select on the build machine the problem disappeared again. To be clear - it was not that the project was using the wrong version of Xcode to build - I have a script set to select a specific version of Xcode on the build machine, and on my local machine I was using Xcode 12 to build the project. The problem was specifically the v
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’20
navigationBarItems disappear in TabView
Hi,I have a view that has navigation bar items and I embed that view in a TabView. But when doing that, the bar items no longer appear. If I call the view outside of a TabView everything works as expected.Below a small sample project to illustrate my issue:// // ContentView.swift // TabView // // Created by Max on 2020-03-30. // Copyright © 2020 Max. All rights reserved. // import SwiftUI struct ContentView: View { var body: some View { NavigationView{ NavigationLink(destination: WarehouseOrderTabView()){ Text(Click me) } } } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } } struct WarehouseOrderTabView: View { var body: some View { TabView{ TabView1().navigationBarTitle(Dashboard) .tabItem { Image(systemName: gauge) Text(Dashboard) } TabView2().navigationBarTitle(Orders) .tabItem { Image(systemName: list.dash) Text(Orders) } } } } struct TabView1: View { var body: some View { Text(TabView 1) //I would expect to see those bar items when displaying tab 1 .navig
2
0
1.1k
Mar ’20
UISearchController in UITableViewController disappears
I'm using NSFetchedResultsController for the tableview display the results returned by Core Data.Use UISearchController to search. I have the following problem: sometimes, if I search while the tableView is being updated, the search bar disappears.The table view is in a navigation controller.- (void)viewDidLoad { [super viewDidLoad]; ... [self.view setMultipleTouchEnabled:NO]; [self.tableView setMultipleTouchEnabled:NO]; [self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone]; [self.tableView setContentInset:UIEdgeInsetsMake(0, 0, 44, 0)]; _searchController = [[UISearchController alloc] initWithSearchResultsController:nil]; self.searchController.searchResultsUpdater = self; self.searchController.delegate = self; self.searchController.dimsBackgroundDuringPresentation = NO; / self.searchController.hidesNavigationBarDuringPresentation = NO; [self.searchController.searchBar sizeToFit]; self.searchController.searchBar.delegate = self; / self.definesPresentationContext = YES; self.tableView.tableHeader
Topic: UI Frameworks SubTopic: UIKit Tags:
3
0
1.3k
Aug ’16
Game Center disappeared:(
Game Center used to be an application that just came with the phone but now it seems it's not. I want to add a friend to my account so we can play a game together but I can't figure out where Game Center is. :( Please help, Liv
1
0
2.1k
Dec ’17
Siri UI disappear when LAContext dialog show
I'm use INSendPaymentIntent and INSearchForAccountsIntent.It is all work well. But Siri UI disappear when FaceID and TouchID dialog show at iOS 13.x all version include beta.So it can't show response ui.
Replies
4
Boosts
0
Views
1k
Activity
Oct ’19
Reply to Build Processing Emails Down
I'm not receiving the emails, and my MacOS builds show up temporarily in TestFlight, but then disappear as if they were never uploaded. iOS Builds are working fine. I've tried uploading MacOS Builds from Transporter 3 times in the last 24 hours, and the same thing has happened every time. My MacOS App ID is: 1494196015 Please help ASAP - need to get a critical bug fix out. Thank you
Replies
Boosts
Views
Activity
Apr ’23
List rows disappearing when scrolling
I have a List containing ItemRow views based on an ItemDetails object. The content is provided by a model which pulls it from Core Data. When I scroll through the list one or two of the rows will disappear and reappear when I scroll back up. I have a feeling it's because the state is being lost? Here's some relevant info (only necessary parts of the files are provided): -- ModelData.swift: @Observable class ModelData { var allItems: [ItemDetails] = coreData.getAllItems() ... } -- ItemDetails.swift: struct ItemDetails: Identifiable, Hashable, Equatable { public let id: UUID = UUID() public var itemId: String // Also unique, but used for a different reason ... } -- MainApp.swift: let modelData: ModelData = ModelData() // Created as a global class SceneDelegate: UIResponder, UIWindowSceneDelegate { // Methods in here (and in lots of other places) use `modelData`, which is why it's a global } @main struct MainApp: App { var body: some Scene { WindowGroup { MainView() } } ... } -- MainView.swift: struct M
Replies
2
Boosts
0
Views
177
Activity
Oct ’25
DisplayMessageAction can I know its disappearance event
I use Message and SwiftUI Environment display an App Store message,I want to know the event or callback when the App Store message action disappears My project is UIKit frame,So I had to use UIKit call SwiftUI, I have a transparent UIHostingController and root view is SwiftUI,I want to pop this UIHostingController when the user dismiss the App Store message action。 import StoreKit import SwiftUI @available(iOS 16.0, *) struct SwiftUIView: View { @Environment(.displayStoreKitMessage) private var displayStoreMessage var body: some View { HStack { } .onAppear() { DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 0.2) { YKAppStoreMessagesManager.sharedManager.displayAction = displayStoreMessage } } } } public final class TransparentHostingController: UIHostingController { public override func viewDidLoad() { super.viewDidLoad() view.isOpaque = false view.backgroundColor = UIColor(red: 0, green: 0, blue: 0, alpha: 0.3) } } @available(iOS 16.0, *) @objcMembers public class YKAppStoreMessagesMana
Replies
0
Boosts
0
Views
649
Activity
Apr ’23
Keyboard's globe button (🌐) was disappeared, iOS 15
Hi guys, when updated to iOS 15 , my app got this issue. Keyboard's globe button (🌐 at left bottom corner) was disappeared, but we could click it. Does anyone have an idea of what could be happening here?
Replies
0
Boosts
0
Views
727
Activity
Apr ’22
Mapkit JS - mapkit.MarkerAnnotation title disappeared from below
One time title was showing below the MarkerAnnotation and I noticed, that once it disappeared and now it is showing inside the marker if you click on it. Is it possible to move it back and show it below the marker? The field, that I am using for this purpose is called title navigator.userAgent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36
Replies
1
Boosts
0
Views
762
Activity
Oct ’23
Windows launched by agents disappear when I click on it
Hi, I'm new in this forum and I have a strange behaviour compared to the a previous MacOS version. In fact, in MacOS 10.14, I have a script who launch some agents and these agents displays smalls windows in the desktop. Now we have some machine in MacOS 11.6 and we would like to replicate this feature. So, when I run the script that launch the agents, the agents also display these windows like in the previous version of MacOS : Nevertheless, I noticed that the behavior is different between the 2 versions of MacOS. In MacOS 11.6 when a select one of the window and then I click anywhere in the desktop, the window disappear even if the icon of the window remain in the deck. For instance, if a select Window 3 and the click in the desktop, the Window is not displayed anymore like this : If a perform the same test for Window 2 (select the window and then click on the desktop) it also not displays like this: After that, if I click in the icon of the Window 3, this screen is displayed again (this window is n
Replies
0
Boosts
0
Views
287
Activity
Nov ’21
DisplayMessageAction can I know its disappearance event
I use Message and SwiftUI Environment display an App Store message,I want to know the event or callback when the App Store message action disappears My project is UIKit frame,So I had to use UIKit call SwiftUI, I have a transparent UIHostingController and root view is SwiftUI,I want to pop this UIHostingController when the user dismiss the App Store message action。 import StoreKit import SwiftUI @available(iOS 16.0, *) struct SwiftUIView: View { @Environment(.displayStoreKitMessage) private var displayStoreMessage var body: some View { HStack { } .onAppear() { DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 0.2) { YKAppStoreMessagesManager.sharedManager.displayAction = displayStoreMessage } } } } public final class TransparentHostingController<Content: View>: UIHostingController<Content> { public override func viewDidLoad() { super.viewDidLoad() view.isOpaque = false view.backgroundColor = UIColor(red: 0, green: 0, blue: 0, alpha: 0.3) } } @available(iOS 16.0, *) @objcMembers
Replies
0
Boosts
0
Views
492
Activity
Apr ’23
Folders and Files disappeared from Finder and iCloud!
Hi, I have recently bought a new MacBook Pro (Sonoma) and after installed several software I realised that the folders that were on the Finder disappeared from the Mac and iCloud. I read countless forums and tried different option as well as third-party software to see if they are still in it, but nothing. I was a bit concerned that leaving the filed only on iCloud was too risky. After some manoeuvres the folders, ONLY, reappeared in the Downloads folder (even if it was not their path). Is there anyone can help me with this? One of the folder was a music folder (I am a musician and dj) and there are my last 15 years, and I would like not to lose it. Thank you in advance for your help. Mike
Replies
0
Boosts
0
Views
535
Activity
Jul ’24
USB Audio Mixer Keeps Disappearing
I have connected a USB audio mixer to my iMac, but the machine keeps losing the connection. Specifically, when I look in Sound Preferences. For a solid week, I could hear and use the mic through the mixer without an issue. The mixer showed up as IOUSBHOST. However, this morning the mixer is now showing up in Sound Preferences as JieLi BR17 and it keeps bugging out, i.e., it will show up on the list and then disappear taking my audio I/O for a ride in the process. A major problem when I'm delivering virtual workshops and classes. How do I get my iMac to recognize the mixer using the IOUSBHOST protocol? Frankly, how do I fix this problem. Thanks for any insight and help on this. Fair warning: not a developer but willing to do the learning to get my set up working.
Replies
4
Boosts
0
Views
1.8k
Activity
Jun ’21
Reply to tvOS / Xcode 12 Expected a type "UISplitViewControllerStyle"
Finally figured this out. It turns out the problem was that the version of Xcode set by xcode-select was the store version of Xcode (11.7). Once Xcode 12 was released & I installed the update the problem inexplicably disappeared. However, our build server still hade Xcode 11.7 set as the default with xcode-select (even though the build was actually using Xcode 12), so when I pushed a build of our tvOS app the problem showed back up. It took several days of mucking around before it finally occurred to try changing the version of Xcode set with xcode-select. When I set Xcode 12 as the default with xcode-select on the build machine the problem disappeared again. To be clear - it was not that the project was using the wrong version of Xcode to build - I have a script set to select a specific version of Xcode on the build machine, and on my local machine I was using Xcode 12 to build the project. The problem was specifically the v
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Sep ’20
navigationBarItems disappear in TabView
Hi,I have a view that has navigation bar items and I embed that view in a TabView. But when doing that, the bar items no longer appear. If I call the view outside of a TabView everything works as expected.Below a small sample project to illustrate my issue:// // ContentView.swift // TabView // // Created by Max on 2020-03-30. // Copyright © 2020 Max. All rights reserved. // import SwiftUI struct ContentView: View { var body: some View { NavigationView{ NavigationLink(destination: WarehouseOrderTabView()){ Text(Click me) } } } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } } struct WarehouseOrderTabView: View { var body: some View { TabView{ TabView1().navigationBarTitle(Dashboard) .tabItem { Image(systemName: gauge) Text(Dashboard) } TabView2().navigationBarTitle(Orders) .tabItem { Image(systemName: list.dash) Text(Orders) } } } } struct TabView1: View { var body: some View { Text(TabView 1) //I would expect to see those bar items when displaying tab 1 .navig
Replies
2
Boosts
0
Views
1.1k
Activity
Mar ’20
UISearchController in UITableViewController disappears
I'm using NSFetchedResultsController for the tableview display the results returned by Core Data.Use UISearchController to search. I have the following problem: sometimes, if I search while the tableView is being updated, the search bar disappears.The table view is in a navigation controller.- (void)viewDidLoad { [super viewDidLoad]; ... [self.view setMultipleTouchEnabled:NO]; [self.tableView setMultipleTouchEnabled:NO]; [self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone]; [self.tableView setContentInset:UIEdgeInsetsMake(0, 0, 44, 0)]; _searchController = [[UISearchController alloc] initWithSearchResultsController:nil]; self.searchController.searchResultsUpdater = self; self.searchController.delegate = self; self.searchController.dimsBackgroundDuringPresentation = NO; / self.searchController.hidesNavigationBarDuringPresentation = NO; [self.searchController.searchBar sizeToFit]; self.searchController.searchBar.delegate = self; / self.definesPresentationContext = YES; self.tableView.tableHeader
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
3
Boosts
0
Views
1.3k
Activity
Aug ’16
Game Center disappeared:(
Game Center used to be an application that just came with the phone but now it seems it's not. I want to add a friend to my account so we can play a game together but I can't figure out where Game Center is. :( Please help, Liv
Replies
1
Boosts
0
Views
2.1k
Activity
Dec ’17
ContentView's Canvas disappeared
Hello all! My Xcode Version 12.0 (12A7209) and MacOS Catalina 10.15.6 (MacBook Pro Retina, 13-inch, Late 2013) ContentView.swift's canvas is invisible although it is open in editor. I checked all options and they all ok. What is problem here? is it bug or am I missing something?
Replies
2
Boosts
0
Views
2.7k
Activity
Oct ’20