Search results for

build disappears

50,309 results found

Post

Replies

Boosts

Views

Activity

Reply to Builds disappearing after processing.
Im having the same issue here. Build, validate and submit to app store works successfully in xcode, also i have provided the correct provisioning file which is App Store Distribution profile which has beta entitlement to distribute builds via TestFlight. After submitting to app store i visited iTunes connect and have seen the build in processing but after a couple of minutes it disappeared. Repeated it twice and the same thing happens. Anyone resolved this issued already. Please help. Thank you in advance. Btw im using xcode 8.
Sep ’16
Reply to A Swift compiler error
Did you try to do a clean build ?If that doesn't work, I would do the following :- delete one swift file in the second project- recreate a file with the same name (with New File command)- copy and paste from older project the content o the file- Repeat to other files (I hope you have not tens of them) until message disappear.
Jul ’17
NSView content disappears before animation starts on Sonoma
Note: This does not happen on MacOS 13 and older. I have a NSView (parent) and multiple subviews (child nsviews). When I animate the frame of the subviews ex: [[view animator] setFrame:frame] to move them outside the parent view's frame, the contents of the subviews disappear/clipped before the animation starts. This started happening after installing Sonoma. I tried setting clipsToBounds to false and it did not make any difference. Is anyone else seeing this behavior in Sonoma? Why does appkit clip the contents before the animation starts? Is there a way to switch it to clip after animation ends ?
Topic: UI Frameworks SubTopic: AppKit Tags:
0
0
492
Dec ’23
Coredata and swift: relation between objects disappears
I have a relation between 2 objects that works fine. I create it and then I try to fetch one object from the other object (with the relation) and it works. But after a certain time this relation stops working and trying to get one object from the other gives mean error (with exactly the same code). I'm trying to see where this happens exactly but there isn't a particular part of the code where this relation is forgotten. Sometimes is in one line and sometimes in another different line. The relations are shown in the image. The entities that I'm using are TopicData and WordData, so just a one-to-many relation. I have no constraint attributes and codegene for all entities is Manual/None. After finishing the core data file, I have created NSManagedObject subclasses for all the entities. And in these subclasses I have added some functions to fetch objects. My question is why could it happen that relations disappear. I wonder if it could be related to the core data codegen and creating my own functions in
1
0
613
May ’22
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
536
Apr ’24
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
934
Mar ’22
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
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
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
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
117
Apr ’25
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