Search results for

build disappears

50,309 results found

Post

Replies

Boosts

Views

Activity

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
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
273
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
478
Jul ’22
SwiftUI - scrollTo Animation Disappears
In the following code snippet, I use proxy.scrollTo() to scroll to a target. In order to animate the scrolling process, I wrapped this function call inside withAnimation. This code works on iOS 16, but on iOS 17, it scroll without any animation. Is this a bug or is there an API change? Thanks! import SwiftUI struct ScrollTest: View { var body: some View { ScrollViewReader { proxy in List { Button(Begin Scroll) { withAnimation { proxy.scrollTo(15, anchor: .top) } } ForEach(1..<50) { i in Text(Item (i)) .id(i) } } } } }
4
0
2.1k
Aug ’23
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
iOS 18 beta - Cancelling Interactive UICollectionView Layout Transition causes the collectionView to disappear
On iOS18 beta1 & beta2 builds, calling collectionView.cancelInteractiveTransition() after a call to startInteractiveTransition(to:completion:) seems to remove the intermediate transition layout object from the collection view, but doesn't reinstalls the original layout, which results in the collection view disappearing completely. This was not the case in previous iOS versions, so maybe a beta bug? Possibly related, Xcode logs the following error in the console in the exact moment when the collectionView disappears: “Requesting visual style in an implementation that has disabled it, returning nil. Behavior of caller is undefined.” I filled a bug report, together with sample project, just in case FB14057335 Thanks!
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
865
Jun ’24
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
553
Sep ’22
"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
726
Aug ’19
Label Text disappear and Text Boxes blackout
Hi All,I'm fairly new to Apple iOS Development Team. I've been developing MS and Android Apps for years. I ran into an issue wondering if you could help me. I would be greatly appreciated. We have created a simple signup screen with lable texts on the left and text boxes on the righ like the below:First Name: Text Box for user to enterLast Name: Text Box for user to enterthere are 6 lines and boxes. On most phones, user were able to signup fine. On some users iPhone the Text on the left disappear and the Text Boxes are blackout, so the user can not do anything. These were iPhone X and 11 with iOS 13.3.1. We have tried to update them to iOS 13.4 and it did not fix the issue. Everything else seems to fit on the screen as normal, so we don't think is the screen format. Does anyone know what could cause this issue? Thank you in advance for your help.Best regards,Tim
2
0
776
Jun ’20
Reply to Ensuring own Framework continues to be loadable by other apps, which may be Hardened and/or Sandboxed
I agree with everything you mentioned. But, when you download FxPlug 4 - the examples have Code Signing Inject Base Entitlements enabled by default (I'm trying FxSimpleColorCorrector), and just by disabling Code Signing Inject Base Entitlements the filters no longer work. Filters are not visible by Motion/FCPX. This one build setting change, nothing else, make the filters disappear. Everything else is straight from the FxPlug 4 SDK.I verified that with codesign -d --entitlements :- *.pluginkit command - as long as com.apple.security.get-task-allow entitlement exists Motion sees the filter. Once it's stripped, filter disappears in Motion.Not sure what I'm doing wrong.
Topic: Code Signing SubTopic: General Tags:
Mar ’20
Reply to Xcode 13.2 - Internal error : Missing Package Description Module
I have a similar issue. I am using a workspace with many projects and packages, and when updating today to xcode 13.2 all the targets to my packages disappeared and now my projects won't build. The error was missingPackageDescriptionModule. Tried recreating the workspace but still when adding packages, local or remote, their targets are not created. Didn't have any problems with the betas of xcode 13.2.
Dec ’21