Search results for

“build disappears”

51,323 results found

Post

Replies

Boosts

Views

Activity

Reply to Keyboard extension disappears from selected keyboards list on iOS 15
I've had people reaching out to me that their keyboard extensions started disappearing in iOS 17. As I investigated one, I found that using se. (Swedish top domain) as bundle identifier prefix causes the keyboard to disappear. I wrote more about this issue here, and have reported it to the Feedback Assistant: https://keyboardkit.com/blog/2024/02/12/keyboards-disappear-in-ios-17
Topic: UI Frameworks SubTopic: UIKit Tags:
Feb ’24
Swift UI NavigationLink Oval Button Needs to Disappear
I've setup a NavigationLink so users can tap on the image and they're taken to another view, in this case FenderExperience. I can't for the life of me figure out how to make this oval bar behind the image disappear. Is this an Xcode preview issue? I'm running Xcode 15.2 struct BrandImage: View { var body: some View { VStack(alignment: .leading) { NavigationStack { Text(Ralph Lauren) .font(.title) .padding(.bottom, -5) Image(RL) .resizable() .scaledToFit() .frame(width: 300, height: 200) .overlay( RoundedRectangle(cornerRadius: 0) .stroke(Color.white, lineWidth: 2)) Text(Fender) .font(.title) .padding(.bottom, -5) NavigationLink(destination: FenderXperience()) { Image(Fender II) .resizable() .scaledToFit() .frame(width: 300, height: 95) .overlay( RoundedRectangle(cornerRadius: 0) .stroke(Color.white, lineWidth: 2)) } Text(Burton) .font(.title) .padding(.bottom, -5) Image(Burton) .resizable() .scaledToFit() .frame(width: 300, height: 200) .overlay( RoundedRectangle(cornerRadius: 0) .stroke(Color.white,
0
0
772
Jan ’24
Source item disappears after swipe-back with .navigationTransition(.zoom)
[Submitted as FB21078443] When using .matchedTransitionSource with .navigationTransition(.zoom), swiping back from the left edge to return from a detail view causes the source item to disappear once the transition finishes. It’s only a visual issue—the item is still there and can be tapped to open again. This doesn’t happen when using the Back button; only the swipe-back gesture triggers it. Also, it only reproduces on a physical device, not in Simulator. SYSTEM INFO Xcode 26.1.1 (17B100) macOS 26.1 (25B78) iOS 26.1 (23B85) iOS 26.2 (23C5044b) REPRO STEPS Run the code below on a physical device, tap an image, then swipe from the left edge to dismiss the detail view. ACTUAL The image zooms back to its origin, then disappears once the animation settles. EXPECTED The image card remains visible. SCREENSHOTS CODE import SwiftUI struct Item: Identifiable, Hashable { let id = UUID() let imageName: String let title: String } struct ContentView: View { @Namespace private var namespace let items = [ I
Topic: UI Frameworks SubTopic: SwiftUI
2
0
124
Nov ’25
Reply to iTunes Connect: Test Information Save Button Disabled
I've been having this same problem for a week or so now. I was able to get the save button to be enabled by taking the following steps:Before you upload your build:Log in iTunes Connect, select My Apps, select [your app], select TestFlight, then under Internal Testin (on the left), select Not Available for Testing.Upload your build, then wait for processing to disappear next to your build number and for the build number to turn blue and clickable under Activity.Then go to TestFlight > Internal Testing and select the new build number which should be there and clickable above Not Available for Testing. Then try to edit the info. The save button turned blue for me but when I clicked it did nothing.Who uploaded the build originally? I wonder if that has anything to do with it. I uploaded the version as an App Manager then I changed my role to Admin and its been giving me this problem near the time of th role switch. Wonder if that has anything to do with it
Nov ’15
One cell disappears from UICollectionView if height changed in process
I wanted to implement a self-sizing horizontal UICollectionView with self-sizing cells. I used the observer on contentSize of collectionView, so that when I change Dynamic Type size, the collection view resizes together with cells. But when I change the number of items to 1. The single cell disappears! The bug is reproducible when the estimatedItemSize = UICollectionViewFlowLayout.automaticSize, but if set some concrete value (e.g. CGSize(width: 100, height: 20)) everything works as expected. But I assume that automaticSize should have worked no matter how many cells need to be displayed. Environment: Simulator iPhone 15 Pro, iOS 17.0.1, Xcode 15.0.1 I've created a bug report. Bug Number: FB13379594 // ViewController.swift import UIKit class ViewController: UIViewController { var items: [String] = [] var horizontalInset: CGFloat = 10 var verticalInset: CGFloat = 5 @IBOutlet weak var collectionView: UICollectionView! @IBOutlet weak var collectionViewHeightConstraint: NSLayoutConstraint! override func
0
0
552
Nov ’23
Reply to MacOS Build doesn`t works
The screenshot seems to have disappeared from your post, but I saw it earlier and noticed that your project path contains spaces and commas. Not necessarily your problem here but it’s worth looking into. You need to be careful about that when writing custom build phase scripts, using 3rd party tools that have their own scripting, etc. (I find it easiest to just avoid using paths with spaces or other characters that can cause scripting headaches.)
Aug ’21
UITableView HeaderView disappears on Tableview beginupdates
Hi,I have created custom headers which has buttons which will be used across the entire appAlso in the tableview we have textviews so i need to resize and scrollWhen i do that all the headerviews go blankFor headerview i am passing a uitableviewcell, since it needs a view override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { guard let cell1 = tableView.dequeueReusableCell(withIdentifier: header) as? CustomCell else { return UITableViewCell() } cell1.delegate = self cell1.btnHeader.setTitle(Test, for: .normal) return cell1On textview did change i call the following code let size = textView.bounds.size let newSize = textView.sizeThatFits(CGSize(width: size.width, height: CGFloat.greatestFiniteMagnitude)) / if size.height != newSize.height { UIView.setAnimationsEnabled(false) tableView?.beginUpdates() tableView?.endUpdates() UIView.setAnimationsEnabled(false) guard let cell = textView.superview?.superview?.superview as? CustomCell else { return } if let thisIndexP
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
4.5k
Feb ’18
Scheduled local notifications mysteriously disappearing
I have a feature in my app which is very similar to native Clock alarms, where users can set a time for a reminder and optional days of the week to repeat the reminder. Example Case User sets a reminder at 1:00 PM, repeating every day. I schedule 7 notifications, 1 for each weekday, each repeating. The user should get a notification every day at 1:00 PM unless they turn off the feature. Problem After successfully scheduling local notifications, and it working for the first day, the notifications stop working and printing pending notifications shows that they mysteriously got unscheduled. What I know I've heard of a 64 limit to notifications, but when testing with 7 notifications (1 reminder for each day of the week, repeating) it doesn't work either. Each notification has an ID in the format: . It consistently works on the first day, then fails on the 2nd or 3rd day The app is in production, the problem occurs in both development and production environments. Code for day in self.days { /* days is an array of
3
0
2.5k
Jan ’21
PencilKit SwiftUI issue (disappearing strokes) on iOS 16 Simulator
We are using a SwiftUI view backed by PencilKit and are experiencing an issue on iOS 16 where drawn strokes disappear from the drawing (the drawing is empty after the stroke ends). Debugging the issue shows that PKCanvasView's drawing collection of strokes is increasing, yet they are not being rendered. Details: I'm on macOS 12.6 Monterey The bug surfaces in Xcode 14.1 / iOS 16.1 (I didn't check the Xcode 14.0 / 14.0.1). The code works as expected in Xcode 13.4.1 / iOS 15.5. The bug appears not to happen on device (iPhone 13 Pro / iOS 16.1.1) Example code demonstrating the issue: I have added a couple of print statements to show what is happening and to count the brush strokes of the PKDrawing. Please see the attached GIFs below that demonstrate the issue. import SwiftUI import PencilKit public struct TestCanvas { private static let defaultTool = PKInkingTool(.pen, color: .darkGray, width: 5) } // MARK: UIViewRepresentable extension TestCanvas: UIViewRepresentable { public func makeUIView(context: Co
3
0
2.6k
Nov ’22
UIButton image disappears when “debug executable” is unchecked in edit scheme
I have created a UIButton in storyboard, and have set an image for the UIButton (the image is in assets.xcassets). The button shows up in the simulator and when run on an iPhone. However, if I quit the app on the iPhone and open it again, the button disappears, but I am still able to click it and it works. The same thing happens when I uncheck debug executable. When I check the view hierarchy, the button is on top of the hierarchy but is invisible. Using infoButton.isHidden = false also does not work. In my button's view controller, I have called view.bringSubviewToFront(_: infoButton) in viewDidLoad(). I have also tried setting the button's image programmatically, but it still doesn't show up. However, when I set a background color for the button with infoButton.backgroundColor = UIColor.blue, I can see a blue box where the button should be, but no image. Here are my settings for the UIButton: I would appreciate any help, thank you.
2
0
2k
Jun ’22
Reply to Slow framework unit test failure (~5s)
Hmm... I just found out that I can set the Build Configuration to Release in the Test action and the pause is disappearing. Might be some default option which is set in the Debug configuration? Sorry... it seems that if you simply fiddle around enough, Xcode is somehow caching stuff... at least it is definitely not consistent in speed. Whenever I modify the tests (e.g. add an XCTFail in a different place) it takes again 5s to show up.
Aug ’22
Reply to Keyboard and View Flickering on TextInput with secureTextEntry from iOS 17
I observed the same behavior on a React website that I'm building. The 'password' bar briefly disappears, thereby giving the impression of flickering. Looking for solutions, I came across recent bug reports on this topic on react-native and flutter who all seem to agree that the problem must be lying deeper: https://github.com/facebook/react-native/issues/39411 https://github.com/flutter/flutter/issues/134723
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’24
Reply to Build is not appearing on Testflight store connect
Same issue here, using Unity for my project if that matters for common variables. It shows up first thing in test flight as status processing... then it disappears after that stage within 30 minutes. Just started happening in last 24 hours. I assume we are missing something required from the update yesterday and it's auto rejecting our builds when processing but I don't know why.... Edit: Noting that my machine is also a mac mini M1
Jun ’21
Reply to Keyboard extension disappears from selected keyboards list on iOS 15
I've had people reaching out to me that their keyboard extensions started disappearing in iOS 17. As I investigated one, I found that using se. (Swedish top domain) as bundle identifier prefix causes the keyboard to disappear. I wrote more about this issue here, and have reported it to the Feedback Assistant: https://keyboardkit.com/blog/2024/02/12/keyboards-disappear-in-ios-17
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Feb ’24
Swift UI NavigationLink Oval Button Needs to Disappear
I've setup a NavigationLink so users can tap on the image and they're taken to another view, in this case FenderExperience. I can't for the life of me figure out how to make this oval bar behind the image disappear. Is this an Xcode preview issue? I'm running Xcode 15.2 struct BrandImage: View { var body: some View { VStack(alignment: .leading) { NavigationStack { Text(Ralph Lauren) .font(.title) .padding(.bottom, -5) Image(RL) .resizable() .scaledToFit() .frame(width: 300, height: 200) .overlay( RoundedRectangle(cornerRadius: 0) .stroke(Color.white, lineWidth: 2)) Text(Fender) .font(.title) .padding(.bottom, -5) NavigationLink(destination: FenderXperience()) { Image(Fender II) .resizable() .scaledToFit() .frame(width: 300, height: 95) .overlay( RoundedRectangle(cornerRadius: 0) .stroke(Color.white, lineWidth: 2)) } Text(Burton) .font(.title) .padding(.bottom, -5) Image(Burton) .resizable() .scaledToFit() .frame(width: 300, height: 200) .overlay( RoundedRectangle(cornerRadius: 0) .stroke(Color.white,
Replies
0
Boosts
0
Views
772
Activity
Jan ’24
Source item disappears after swipe-back with .navigationTransition(.zoom)
[Submitted as FB21078443] When using .matchedTransitionSource with .navigationTransition(.zoom), swiping back from the left edge to return from a detail view causes the source item to disappear once the transition finishes. It’s only a visual issue—the item is still there and can be tapped to open again. This doesn’t happen when using the Back button; only the swipe-back gesture triggers it. Also, it only reproduces on a physical device, not in Simulator. SYSTEM INFO Xcode 26.1.1 (17B100) macOS 26.1 (25B78) iOS 26.1 (23B85) iOS 26.2 (23C5044b) REPRO STEPS Run the code below on a physical device, tap an image, then swipe from the left edge to dismiss the detail view. ACTUAL The image zooms back to its origin, then disappears once the animation settles. EXPECTED The image card remains visible. SCREENSHOTS CODE import SwiftUI struct Item: Identifiable, Hashable { let id = UUID() let imageName: String let title: String } struct ContentView: View { @Namespace private var namespace let items = [ I
Topic: UI Frameworks SubTopic: SwiftUI
Replies
2
Boosts
0
Views
124
Activity
Nov ’25
Reply to iTunes Connect: Test Information Save Button Disabled
I've been having this same problem for a week or so now. I was able to get the save button to be enabled by taking the following steps:Before you upload your build:Log in iTunes Connect, select My Apps, select [your app], select TestFlight, then under Internal Testin (on the left), select Not Available for Testing.Upload your build, then wait for processing to disappear next to your build number and for the build number to turn blue and clickable under Activity.Then go to TestFlight > Internal Testing and select the new build number which should be there and clickable above Not Available for Testing. Then try to edit the info. The save button turned blue for me but when I clicked it did nothing.Who uploaded the build originally? I wonder if that has anything to do with it. I uploaded the version as an App Manager then I changed my role to Admin and its been giving me this problem near the time of th role switch. Wonder if that has anything to do with it
Replies
Boosts
Views
Activity
Nov ’15
One cell disappears from UICollectionView if height changed in process
I wanted to implement a self-sizing horizontal UICollectionView with self-sizing cells. I used the observer on contentSize of collectionView, so that when I change Dynamic Type size, the collection view resizes together with cells. But when I change the number of items to 1. The single cell disappears! The bug is reproducible when the estimatedItemSize = UICollectionViewFlowLayout.automaticSize, but if set some concrete value (e.g. CGSize(width: 100, height: 20)) everything works as expected. But I assume that automaticSize should have worked no matter how many cells need to be displayed. Environment: Simulator iPhone 15 Pro, iOS 17.0.1, Xcode 15.0.1 I've created a bug report. Bug Number: FB13379594 // ViewController.swift import UIKit class ViewController: UIViewController { var items: [String] = [] var horizontalInset: CGFloat = 10 var verticalInset: CGFloat = 5 @IBOutlet weak var collectionView: UICollectionView! @IBOutlet weak var collectionViewHeightConstraint: NSLayoutConstraint! override func
Replies
0
Boosts
0
Views
552
Activity
Nov ’23
Reply to MacOS Build doesn`t works
The screenshot seems to have disappeared from your post, but I saw it earlier and noticed that your project path contains spaces and commas. Not necessarily your problem here but it’s worth looking into. You need to be careful about that when writing custom build phase scripts, using 3rd party tools that have their own scripting, etc. (I find it easiest to just avoid using paths with spaces or other characters that can cause scripting headaches.)
Replies
Boosts
Views
Activity
Aug ’21
UITableView HeaderView disappears on Tableview beginupdates
Hi,I have created custom headers which has buttons which will be used across the entire appAlso in the tableview we have textviews so i need to resize and scrollWhen i do that all the headerviews go blankFor headerview i am passing a uitableviewcell, since it needs a view override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { guard let cell1 = tableView.dequeueReusableCell(withIdentifier: header) as? CustomCell else { return UITableViewCell() } cell1.delegate = self cell1.btnHeader.setTitle(Test, for: .normal) return cell1On textview did change i call the following code let size = textView.bounds.size let newSize = textView.sizeThatFits(CGSize(width: size.width, height: CGFloat.greatestFiniteMagnitude)) / if size.height != newSize.height { UIView.setAnimationsEnabled(false) tableView?.beginUpdates() tableView?.endUpdates() UIView.setAnimationsEnabled(false) guard let cell = textView.superview?.superview?.superview as? CustomCell else { return } if let thisIndexP
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
4.5k
Activity
Feb ’18
app suddenly disappeared in search result
Our app has been #1 in the search result for couple months (keyword = app exact name), got good ratings and was featured by app store last year. But today when I searched again, it's nowhere in the result, not even after 100th. Havent received any email from app store. What could be the problem?
Replies
4
Boosts
0
Views
797
Activity
Jun ’15
Scheduled local notifications mysteriously disappearing
I have a feature in my app which is very similar to native Clock alarms, where users can set a time for a reminder and optional days of the week to repeat the reminder. Example Case User sets a reminder at 1:00 PM, repeating every day. I schedule 7 notifications, 1 for each weekday, each repeating. The user should get a notification every day at 1:00 PM unless they turn off the feature. Problem After successfully scheduling local notifications, and it working for the first day, the notifications stop working and printing pending notifications shows that they mysteriously got unscheduled. What I know I've heard of a 64 limit to notifications, but when testing with 7 notifications (1 reminder for each day of the week, repeating) it doesn't work either. Each notification has an ID in the format: . It consistently works on the first day, then fails on the 2nd or 3rd day The app is in production, the problem occurs in both development and production environments. Code for day in self.days { /* days is an array of
Replies
3
Boosts
0
Views
2.5k
Activity
Jan ’21
PencilKit SwiftUI issue (disappearing strokes) on iOS 16 Simulator
We are using a SwiftUI view backed by PencilKit and are experiencing an issue on iOS 16 where drawn strokes disappear from the drawing (the drawing is empty after the stroke ends). Debugging the issue shows that PKCanvasView's drawing collection of strokes is increasing, yet they are not being rendered. Details: I'm on macOS 12.6 Monterey The bug surfaces in Xcode 14.1 / iOS 16.1 (I didn't check the Xcode 14.0 / 14.0.1). The code works as expected in Xcode 13.4.1 / iOS 15.5. The bug appears not to happen on device (iPhone 13 Pro / iOS 16.1.1) Example code demonstrating the issue: I have added a couple of print statements to show what is happening and to count the brush strokes of the PKDrawing. Please see the attached GIFs below that demonstrate the issue. import SwiftUI import PencilKit public struct TestCanvas { private static let defaultTool = PKInkingTool(.pen, color: .darkGray, width: 5) } // MARK: UIViewRepresentable extension TestCanvas: UIViewRepresentable { public func makeUIView(context: Co
Replies
3
Boosts
0
Views
2.6k
Activity
Nov ’22
UIButton image disappears when “debug executable” is unchecked in edit scheme
I have created a UIButton in storyboard, and have set an image for the UIButton (the image is in assets.xcassets). The button shows up in the simulator and when run on an iPhone. However, if I quit the app on the iPhone and open it again, the button disappears, but I am still able to click it and it works. The same thing happens when I uncheck debug executable. When I check the view hierarchy, the button is on top of the hierarchy but is invisible. Using infoButton.isHidden = false also does not work. In my button's view controller, I have called view.bringSubviewToFront(_: infoButton) in viewDidLoad(). I have also tried setting the button's image programmatically, but it still doesn't show up. However, when I set a background color for the button with infoButton.backgroundColor = UIColor.blue, I can see a blue box where the button should be, but no image. Here are my settings for the UIButton: I would appreciate any help, thank you.
Replies
2
Boosts
0
Views
2k
Activity
Jun ’22
Reply to Slow framework unit test failure (~5s)
Hmm... I just found out that I can set the Build Configuration to Release in the Test action and the pause is disappearing. Might be some default option which is set in the Debug configuration? Sorry... it seems that if you simply fiddle around enough, Xcode is somehow caching stuff... at least it is definitely not consistent in speed. Whenever I modify the tests (e.g. add an XCTFail in a different place) it takes again 5s to show up.
Replies
Boosts
Views
Activity
Aug ’22
Reply to Keyboard and View Flickering on TextInput with secureTextEntry from iOS 17
I observed the same behavior on a React website that I'm building. The 'password' bar briefly disappears, thereby giving the impression of flickering. Looking for solutions, I came across recent bug reports on this topic on react-native and flutter who all seem to agree that the problem must be lying deeper: https://github.com/facebook/react-native/issues/39411 https://github.com/flutter/flutter/issues/134723
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’24
Reply to Build is not appearing on Testflight store connect
Same issue here, using Unity for my project if that matters for common variables. It shows up first thing in test flight as status processing... then it disappears after that stage within 30 minutes. Just started happening in last 24 hours. I assume we are missing something required from the update yesterday and it's auto rejecting our builds when processing but I don't know why.... Edit: Noting that my machine is also a mac mini M1
Replies
Boosts
Views
Activity
Jun ’21
Reply to Direct link to all my apps in App Store not working in iOS 12
Its not working it disappeared
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’23