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 ?
Search results for
build disappears
49,423 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
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
I have kind of a similar issue on XCode 14.2 with warnings. When I clean & build from scratch, I get all the warnings as it should. But after one or 2 rebuild, all warnings in my local packages disappear. I hope it gets fixed in next version of xcode as this renders cleaning warnings especially difficult on large projects ....
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
After installing the last beta version OSX 10.11.4 on my Mac ,many arabic letters disappeared in massages and Leaf
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.
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.
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
Ratings are disappearing from the new current version.And why would a free promotion make ratings disappear?
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
Tags:
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) } }
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,
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!
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:
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!
My app was getting a few downloads for about eight weeks but not it has dosappeared. Any ideas?
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) } } } } }