Search results for

build disappears

49,420 results found

Post

Replies

Boosts

Views

Activity

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
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
827
Jun ’24
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
461
Jul ’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
716
Aug ’19
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
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
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
545
Sep ’22
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
762
Jun ’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
Problem of cell disappearing in UICollection view in ios 10 only
Hi,I am getting a problem where UIcollectionview cell is disappearing after being displayed for a moment. I have debugged the UI and check all the things related to Memory deallocations and hide and show of all views within UIcollectionviewcell.In my app there is one collectionview cell visible one at a time and scroll direction is horizontal, as i scroll for another cell after loading for a moment cell is getting disappeared and balck background of collection view start appearing.Pain of the problem is that it is working fine below iOS 10, i.e. for iOS 9.x or earlier veriosns. The problem is only coming on iOS 10 iPad devices as this app support only iPad devices.Please suggest any solution or any hint, I am stucked in this problem and i have no idea of that of any root cause to that problem.http://screencast.com/t/KJuACeLgfSyHere is the video screencast attached.
3
0
6.1k
Oct ’16
iOS 14 GM Inhouse apps disappear after install
When I install Inhouse apps on iOS 14, I see the progress view on the app icon both on the home screen and in the App Library. But when the installation is completed the app disappears and I can't even find it by searching. In the App Library there is a folder for enterprise apps, but it is empty. One time it showed up in search after some time. When I connect the phone to my Mac and open Devices and Simulators in Xcode I see that the app is installed under Installed apps. One of my colleagues sees the same on his device, but another colleague doesn't see it on his device. I've tried installing both with itms-services://?action=download-manifest&url=https:// and by dragging the .ipa file into Xcode's Devices and Simulators with the same result. I see that there have been problems with Inhouse apps in the iOS 14 betas (https://developer.apple.com/forums/thread/655207), but in my issue the app is installed, but disappears.
2
0
1.8k
Sep ’20
Icon badge numbers disappearing
I have an app that until a few months ago used Game Center for turn-based multiplayer functionality. It now uses a custom-built server instead, and I have turned off Game Center for the last versions of the app in iTunes Connect. However, each time I start some other app that does use Game Center, the system removes whatever badge number I have on my icon. As if my app was still Game Center enabled and had no current matches where there was my turn to act.Is there any way to turn of this lingering Game Center behavior? It ruins the user experience. Or do I need to register a completely new app just to get away from Game Center?
1
0
247
Jun ’15