Search results for

“build disappears”

51,304 results found

Post

Replies

Boosts

Views

Activity

TabBar embed in Navigation Controller, Back button does not disappear
I have my views organized as below:Nav Contr -> View Contr -> Tab Contr -> View Contr -> View ContrI try to add the Back button adding in each View Controller and also the TabViewController a combination and at some point even all of the commands:self.navigationItem.leftBarButtonItem = nil self.navigationItem.hidesBackButton = true self.navigationItem.backBarButtonItem = nil self.navigationItem.setHidesBackButton(true, animated: false) self.navigationItem.setLeftBarButtonItem(nil, animated: false)The best result I had was where the back arrow disappeared and the buttoned seemed not to be functional however I cannot make the world BACK go away.The very little code and the application is setup in swift 1.2If you google for TabBar embed in Navigation Controller, Back button does not disappear you will find my post on stackoverflow where I post screenshots and my github with my code. I had to remove the link from here as otherwise the post would never get reviewed.Thanks in advance!
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
2.1k
Sep ’15
SKOverlay did not disappear normally after calling the dismiss method
After the 'present' method is called in SKOverlay, the system will first load the SKOverlay and do the present animation after loading is complete. However, the user may leave the page during the loading process. At this time, we will call the 'dismiss' method (at this time, SKO may not have appeared, or SKO may be doing the appearance animation). According to my online statistics, there are some situations. a. SKO did not display (this is as expected) b. SKO suddenly appeared quickly and then disappeared after leaving the page for a while c. SKO displayed after leaving the page and did not disappear automatically. Do we have a way to completely solve problems b and c? Why can't dismissOverlayInScene completely stop the previous SKO's present task now? I would greatly appreciate it if I could get more information here to deal with this problem.
1
0
546
Apr ’24
AVPlayer disappeared When entering the foreground mode after entering the background mode.
AVPlayer disappeared When entering the foreground mode after entering the background mode. It works correctly when playing .mp4 files, but this issue occurs when playing .m3u8 files. This problem occurs in iOS 14 but not iOS 13. After AVPlayer play correctly, it is paused when entering the background mode. When entering the foreground mode, the AVPlayerLayer disappeared, and only a black screen is displayed. This happens with both AVPlayerLayer and AVPlayerViewController.
2
0
1.5k
Dec ’20
Why does PKToolPicker disappear when blur and doesn't come back
When using PKCanvasView and PKToolPicker in a SwiftUI project using Xcode 13, the PKToolPicker disappear when I blur the view, and it doesn't come back when I remove the blur effect. I am trying to create a popup (to add some setting to the view), but here I simplify the example to just just to see the consequences of the blur effet. When the blur effect is applied, the PKToolPicker disappear, but when I remove the effect, the PKToolPicker despot come back, so it is still possible to right non the PKCanvasView, but it is not possible to change the Pencil or the color anymore. Does anyone know how to get the PKToolPicker back? here is a sample code import SwiftUI struct ContentView: View { @Environment(.managedObjectContext) private var viewContext @State private var isBlured = false var body: some View { VStack { Button(action: { isBlured.toggle() print(isBlured (isBlured)) }, label: { Image(systemName: questionmark) }) DrawingView(id: nil, data: nil, title: test).blur(radius: isBlured ? 30
1
0
946
Mar ’22
Navbar buttons disappear in NavigationSplitView's sidebar when changing apps
We recently migrated our app to use NavigationSplitView on iPad with a sidebar and detail setup, and we got reports that the navigation buttons on the sidebar disappear when returning to our app after using a different app. I reproduced the issue from a new empty project with the following code (issue tested on iOS 17.4 and iOS 18.3, was not able to reproduce on iOS 16.4): import SwiftUI @main struct TestApp: App { var body: some Scene { WindowGroup { NavigationSplitView { Text(sidebar) .toolbar { ToolbarItem(placement: .topBarLeading) { Button(action: {}) { Image(systemName: square.and.arrow.down) } } ToolbarItem(placement: .topBarTrailing) { Button(action: {}) { Image(systemName: square.and.arrow.up) } } } } detail: { Text(detail) .toolbar { ToolbarItem(placement: .topBarLeading) { Button(action: {}) { Image(systemName: eraser) } } ToolbarItem(placement: .topBarTrailing) { Button(action: {}) { Image(systemName: pencil) } } } } } } } Please check the following GIF for the simple steps, notice how th
0
0
130
Apr ’25
UITableViewCell SHADOW disappear while updating by insertRow, then appear back
Shadow disappear on all cells of this type inside tableView once I do insertRow(at:) or deleteRow(at:) in BatchUpdates. Once animation completed shadow appears back for all cells. Any ideas how to keep shadow while insertRow(at:) animates?class PlaceholderCell: UITableViewCell { override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { super.init(style: style, reuseIdentifier: reuseIdentifier) backgroundColor = .white selectionStyle = .none layer.shadowColor = UIColor.black.cgColor layer.shadowOffset = CGSize(width: 0, height: 10) layer.shadowRadius = 10.0 layer.shadowOpacity = 0.5 layer.masksToBounds = false clipsToBounds = false } required init?(coder: NSCoder) { super.init(coder: coder) } }
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
2.7k
Mar ’20
Grand-Child disappear when load content
In my app is the first screen is a list with projects. On press a list-item navigate to detail-View of the project. On the project detail view is a option to load more content (from the project) and show it in an other detail view. The Content of the second detail view, will loading the content when it appears. After loading the content, the list will show for a second and than the view disappears back to project detail view. Here is some code with the same issue. How can I solve that? a video can find here: https://drive.infomaniak.com/app/share/374081/ba9ba6ea-baa6-461d-af61-193b17ffa066 import Foundation import SwiftUI //Item struct, just for testing struct Item: Equatable, Identifiable { var id = UUID() var text: String var isDone: Bool } //simulate the datasource for my app class DataSource: ObservableObject { @Published var content: [Item] = [] @Published var detailContent: [Item] = [] init() { self.content = [Item(text: Hello, isDone: false), Item(text: Hello, isDone: false), Item(text: Hello,
0
0
279
Feb ’22
UIView keep disappearing when changing constrain multiplier
hi, I have a small UIView box inside a larger box that's constrained to the superview(view). when I try to change the leading edges of the smaller box (referencing the trailing constrained to the larger box) it will disappear or fly off the screen, upon further investigation, I find that the constrain being changed is the top constrain of the smaller box... it's quite peculiar, the larger box uses essentially the same code and works as expected. The only difference I can think of is the larger box references to the edge view which Is fixed but not sure if that's what's causing the problem. here is the code. @IBAction func PinchOutlet(_ sender: UIPinchGestureRecognizer) { let newalphaLeadingConstrain = alphaLeadingConstrain.constraintWithMultiplier(alphaLeadingMultiplier) self.alphaLeadingConstrain = newalphaLeadingConstrain view.removeConstraint(self.alphaLeadingConstrain) view.addConstraint(newalphaLeadingConstrain) if sender.scale>1{ self.alphaLeadingMultiplier = 0.1 } else{ self.alphaLeadingMul
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
483
Jul ’22
Reply to UIButton Background Color
Just tried dragging a UIButton into the storyboard (xcode 7.1.1) and setting the background image in the storyboard, the label does disappear but then if I build and run in the simulator the label is visible. Looks like a bug with interface builder. If in the storyboard you then set an image aswell and then remove it the label then appears in the storyboard, looks like it's radar time.
Topic: App & System Services SubTopic: Core OS Tags:
Nov ’15
Merchant Domains section disappeared on our merchant id configuration page
We are using Apple Pay on the web. Previously we need to regularly reverify our domains, but after replace the payment processing certificate and merchant identity certificate, the merchant domains section disappeared on our merchant id configuration page. And now, our websites are no longer able to pop up the Apple Pay window on safari.
0
0
558
Sep ’22
Reply to App build disappeared on TestFlight page
I'm having the same issue. I tried increasing the build number and still the build appears shortly on the website in the Processing state, and then disappears. After the first upload I got an email with an error message, which I resolved and haven't got any email since, but still any uploaded build is not listed on the website. Then I tried increasing the version string from 1.0 to 1.0.1 and the build number as well, and after reloading the website it showed a disclosure indicator with the label 1.0.1, but completely empty. After reloading the website one more time, even this indicator was gone again, and the website is completely empty like at the start of this whole experiment.
Dec ’24
"VPN Connection" alert disappears quickly
I'm working on a VPN client using the NEVPNManager.When I test a connection with incorrect credentials time to time I can read the error message. But more often the alert is disappeared faster than for one second.In the console logs, there are the following lines:11:58:40.040261 +0300 assertiond Client relinquished <BKProcessAssertion: 0x102d2aee0; Deliver Message (suspend:10s); id:…83F2FD6CC241>11:58:40.040318 +0300 assertiond Client relinquished <BKProcessAssertion: 0x102d225c0; systemAnimationFence (finishTask:180s); id:…B4051793443F>11:58:40.040375 +0300 assertiond [MyApp:1607] Deactivate assertion: <BKProcessAssertion: 0x102d2aee0; Deliver Message (suspend:10s); id:…83F2FD6CC241>11:58:40.040432 +0300 assertiond [MyApp:1607] Setting jetsam priority to 10 [0x10108]11:58:40.040785 +0300 assertiond [MyApp:1607] Remove assertion: <BKProcessAssertion: 0x102d2aee0; Deliver Message (suspend:10s); id:…83F2FD6CC241>11:58:40.040946 +0300 assertiond [MyApp:1607] Deactivate assertion:
1
0
731
Aug ’19
After installing the last OsX 10.11.4 many of the arabic letters disappears!!!
After installing the last beta version OSX 10.11.4 on my Mac ,many arabic letters disappeared in massages and Leaf
Replies
0
Boosts
0
Views
148
Activity
Jan ’16
Reply to Legit ratings, maybe reviews, disappearing
Ratings are disappearing from the new current version.And why would a free promotion make ratings disappear?
Replies
Boosts
Views
Activity
Oct ’15
TabBar embed in Navigation Controller, Back button does not disappear
I have my views organized as below:Nav Contr -> View Contr -> Tab Contr -> View Contr -> View ContrI try to add the Back button adding in each View Controller and also the TabViewController a combination and at some point even all of the commands:self.navigationItem.leftBarButtonItem = nil self.navigationItem.hidesBackButton = true self.navigationItem.backBarButtonItem = nil self.navigationItem.setHidesBackButton(true, animated: false) self.navigationItem.setLeftBarButtonItem(nil, animated: false)The best result I had was where the back arrow disappeared and the buttoned seemed not to be functional however I cannot make the world BACK go away.The very little code and the application is setup in swift 1.2If you google for TabBar embed in Navigation Controller, Back button does not disappear you will find my post on stackoverflow where I post screenshots and my github with my code. I had to remove the link from here as otherwise the post would never get reviewed.Thanks in advance!
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
1
Boosts
0
Views
2.1k
Activity
Sep ’15
SKOverlay did not disappear normally after calling the dismiss method
After the 'present' method is called in SKOverlay, the system will first load the SKOverlay and do the present animation after loading is complete. However, the user may leave the page during the loading process. At this time, we will call the 'dismiss' method (at this time, SKO may not have appeared, or SKO may be doing the appearance animation). According to my online statistics, there are some situations. a. SKO did not display (this is as expected) b. SKO suddenly appeared quickly and then disappeared after leaving the page for a while c. SKO displayed after leaving the page and did not disappear automatically. Do we have a way to completely solve problems b and c? Why can't dismissOverlayInScene completely stop the previous SKO's present task now? I would greatly appreciate it if I could get more information here to deal with this problem.
Replies
1
Boosts
0
Views
546
Activity
Apr ’24
AVPlayer disappeared When entering the foreground mode after entering the background mode.
AVPlayer disappeared When entering the foreground mode after entering the background mode. It works correctly when playing .mp4 files, but this issue occurs when playing .m3u8 files. This problem occurs in iOS 14 but not iOS 13. After AVPlayer play correctly, it is paused when entering the background mode. When entering the foreground mode, the AVPlayerLayer disappeared, and only a black screen is displayed. This happens with both AVPlayerLayer and AVPlayerViewController.
Replies
2
Boosts
0
Views
1.5k
Activity
Dec ’20
Why does PKToolPicker disappear when blur and doesn't come back
When using PKCanvasView and PKToolPicker in a SwiftUI project using Xcode 13, the PKToolPicker disappear when I blur the view, and it doesn't come back when I remove the blur effect. I am trying to create a popup (to add some setting to the view), but here I simplify the example to just just to see the consequences of the blur effet. When the blur effect is applied, the PKToolPicker disappear, but when I remove the effect, the PKToolPicker despot come back, so it is still possible to right non the PKCanvasView, but it is not possible to change the Pencil or the color anymore. Does anyone know how to get the PKToolPicker back? here is a sample code import SwiftUI struct ContentView: View { @Environment(.managedObjectContext) private var viewContext @State private var isBlured = false var body: some View { VStack { Button(action: { isBlured.toggle() print(isBlured (isBlured)) }, label: { Image(systemName: questionmark) }) DrawingView(id: nil, data: nil, title: test).blur(radius: isBlured ? 30
Replies
1
Boosts
0
Views
946
Activity
Mar ’22
Navbar buttons disappear in NavigationSplitView's sidebar when changing apps
We recently migrated our app to use NavigationSplitView on iPad with a sidebar and detail setup, and we got reports that the navigation buttons on the sidebar disappear when returning to our app after using a different app. I reproduced the issue from a new empty project with the following code (issue tested on iOS 17.4 and iOS 18.3, was not able to reproduce on iOS 16.4): import SwiftUI @main struct TestApp: App { var body: some Scene { WindowGroup { NavigationSplitView { Text(sidebar) .toolbar { ToolbarItem(placement: .topBarLeading) { Button(action: {}) { Image(systemName: square.and.arrow.down) } } ToolbarItem(placement: .topBarTrailing) { Button(action: {}) { Image(systemName: square.and.arrow.up) } } } } detail: { Text(detail) .toolbar { ToolbarItem(placement: .topBarLeading) { Button(action: {}) { Image(systemName: eraser) } } ToolbarItem(placement: .topBarTrailing) { Button(action: {}) { Image(systemName: pencil) } } } } } } } Please check the following GIF for the simple steps, notice how th
Replies
0
Boosts
0
Views
130
Activity
Apr ’25
UITableViewCell SHADOW disappear while updating by insertRow, then appear back
Shadow disappear on all cells of this type inside tableView once I do insertRow(at:) or deleteRow(at:) in BatchUpdates. Once animation completed shadow appears back for all cells. Any ideas how to keep shadow while insertRow(at:) animates?class PlaceholderCell: UITableViewCell { override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { super.init(style: style, reuseIdentifier: reuseIdentifier) backgroundColor = .white selectionStyle = .none layer.shadowColor = UIColor.black.cgColor layer.shadowOffset = CGSize(width: 0, height: 10) layer.shadowRadius = 10.0 layer.shadowOpacity = 0.5 layer.masksToBounds = false clipsToBounds = false } required init?(coder: NSCoder) { super.init(coder: coder) } }
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
2.7k
Activity
Mar ’20
Grand-Child disappear when load content
In my app is the first screen is a list with projects. On press a list-item navigate to detail-View of the project. On the project detail view is a option to load more content (from the project) and show it in an other detail view. The Content of the second detail view, will loading the content when it appears. After loading the content, the list will show for a second and than the view disappears back to project detail view. Here is some code with the same issue. How can I solve that? a video can find here: https://drive.infomaniak.com/app/share/374081/ba9ba6ea-baa6-461d-af61-193b17ffa066 import Foundation import SwiftUI //Item struct, just for testing struct Item: Equatable, Identifiable { var id = UUID() var text: String var isDone: Bool } //simulate the datasource for my app class DataSource: ObservableObject { @Published var content: [Item] = [] @Published var detailContent: [Item] = [] init() { self.content = [Item(text: Hello, isDone: false), Item(text: Hello, isDone: false), Item(text: Hello,
Replies
0
Boosts
0
Views
279
Activity
Feb ’22
Keyboard extension disappears from selected keyboards list on iOS 15
Hi! Does anybody encountered a problem when selected custom keyboard disappears from keyboards list after updating to iOS 15? We have a lot of complaints from our users, once a day they need to go to Settings to re-add our keyboard extension. FB9700027 in case someone from Apple can take a look. Thanks!
Replies
4
Boosts
0
Views
2.1k
Activity
Oct ’21
UIView keep disappearing when changing constrain multiplier
hi, I have a small UIView box inside a larger box that's constrained to the superview(view). when I try to change the leading edges of the smaller box (referencing the trailing constrained to the larger box) it will disappear or fly off the screen, upon further investigation, I find that the constrain being changed is the top constrain of the smaller box... it's quite peculiar, the larger box uses essentially the same code and works as expected. The only difference I can think of is the larger box references to the edge view which Is fixed but not sure if that's what's causing the problem. here is the code. @IBAction func PinchOutlet(_ sender: UIPinchGestureRecognizer) { let newalphaLeadingConstrain = alphaLeadingConstrain.constraintWithMultiplier(alphaLeadingMultiplier) self.alphaLeadingConstrain = newalphaLeadingConstrain view.removeConstraint(self.alphaLeadingConstrain) view.addConstraint(newalphaLeadingConstrain) if sender.scale>1{ self.alphaLeadingMultiplier = 0.1 } else{ self.alphaLeadingMul
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
1
Boosts
0
Views
483
Activity
Jul ’22
Reply to UIButton Background Color
Just tried dragging a UIButton into the storyboard (xcode 7.1.1) and setting the background image in the storyboard, the label does disappear but then if I build and run in the simulator the label is visible. Looks like a bug with interface builder. If in the storyboard you then set an image aswell and then remove it the label then appears in the storyboard, looks like it's radar time.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Nov ’15
Merchant Domains section disappeared on our merchant id configuration page
We are using Apple Pay on the web. Previously we need to regularly reverify our domains, but after replace the payment processing certificate and merchant identity certificate, the merchant domains section disappeared on our merchant id configuration page. And now, our websites are no longer able to pop up the Apple Pay window on safari.
Replies
0
Boosts
0
Views
558
Activity
Sep ’22
Reply to App build disappeared on TestFlight page
I'm having the same issue. I tried increasing the build number and still the build appears shortly on the website in the Processing state, and then disappears. After the first upload I got an email with an error message, which I resolved and haven't got any email since, but still any uploaded build is not listed on the website. Then I tried increasing the version string from 1.0 to 1.0.1 and the build number as well, and after reloading the website it showed a disclosure indicator with the label 1.0.1, but completely empty. After reloading the website one more time, even this indicator was gone again, and the website is completely empty like at the start of this whole experiment.
Replies
Boosts
Views
Activity
Dec ’24
"VPN Connection" alert disappears quickly
I'm working on a VPN client using the NEVPNManager.When I test a connection with incorrect credentials time to time I can read the error message. But more often the alert is disappeared faster than for one second.In the console logs, there are the following lines:11:58:40.040261 +0300 assertiond Client relinquished <BKProcessAssertion: 0x102d2aee0; Deliver Message (suspend:10s); id:…83F2FD6CC241>11:58:40.040318 +0300 assertiond Client relinquished <BKProcessAssertion: 0x102d225c0; systemAnimationFence (finishTask:180s); id:…B4051793443F>11:58:40.040375 +0300 assertiond [MyApp:1607] Deactivate assertion: <BKProcessAssertion: 0x102d2aee0; Deliver Message (suspend:10s); id:…83F2FD6CC241>11:58:40.040432 +0300 assertiond [MyApp:1607] Setting jetsam priority to 10 [0x10108]11:58:40.040785 +0300 assertiond [MyApp:1607] Remove assertion: <BKProcessAssertion: 0x102d2aee0; Deliver Message (suspend:10s); id:…83F2FD6CC241>11:58:40.040946 +0300 assertiond [MyApp:1607] Deactivate assertion:
Replies
1
Boosts
0
Views
731
Activity
Aug ’19