Search results for

build disappears

50,310 results found

Post

Replies

Boosts

Views

Activity

Today Widgets (old widgets) disappear after EVERY app update.
We had Today widgets that worked perfect for a long time. After introducing the new Widgets Extension we added a Widgets Bundle to our app. Now after every app update the old widgets disappear from Today view and can be bring back ONLY by rebooting the iPhone. Sometime when they disappear, in today view appears the first widget from the Widgets Bundle. I've tested other apps too and it happens every time to apps that support old and new widgets (Xiaomi Home app for example). Does anyone have a clue how to fix that?
1
0
2.2k
Dec ’21
SKReferenceNode disappears in Xcode Scene Editor
I have a couple nodes that I have put into their own sks files so I can reuse them. I have a main level sks file that uses SKReferenceNode to include the other nodes. When I first open Xcode and open the container sks file the references show up fine. However, if I click on any other file and then come back to the container sks file then the reference nodes do not show up. They are just the empty SKReferenceNode icon.Running the project has the same results. If I run it right after opening Xcode then the referenced nodes show up fine. If I open any other file and then build and run the project then the referenced nodes are totally missing.Has anyone run into this? Am I setting up the scene incorrectly?This is how it looks when it is working correctly: https://www.dropbox.com/s/ags040lf8wa8pin/SceneEditorBugCorrect.png?dl=0This is how it looks when the nodes are missing: https://www.dropbox.com/s/c3ijwupn2oi055j/SceneEditorBugMissing.png?dl=0I have tried this in Xcode 7.1 and Xcode 7.2 beta 4.- Bridge
3
0
928
Dec ’15
react native app disappears on iPhone 11 ios 13.7 simulator
I am developing my first react native app on a Mac(m1 chip). The app appears momentarily on the Xcode simulator and disappears in the background with a blank screen. There is no error on the terminal. Below is the terminal dump. Last login: Tue Dec 15 00:36:33 on ttys000 sanjayprasad@Sanjays-MBP ~ % cd awesomeproject sanjayprasad@Sanjays-MBP awesomeproject % npx react-native run-ios info Found Xcode workspace AwesomeProject.xcworkspace info Building (using xcodebuild -workspace AwesomeProject.xcworkspace -configuration Debug -scheme AwesomeProject -destination id=F55281D6-0A7D-414E-98D9-CC776AB102A6) success Successfully built the app info Installing /Users/sanjayprasad/Library/Developer/Xcode/DerivedData/AwesomeProject-gtggsaoeytxphlcmedfucwkufskf/Build/Products/Debug-iphonesimulator/AwesomeProject.app info Launching org.reactjs.native.example.AwesomeProject success Successfully launched the app on the simulator sanjayprasad@Sanjays-MBP awesomeproject % Your help will be greatly
0
0
713
Dec ’20
All my app screenshots and icon disappeared when I created a new version
I was preparing a new update for our app, as usual, but in the new version all the assets automatically disappeared (screenshots, app icon, etc.), and I have no option to bring them back automatically, except by re-uploading each and every one of them manually for each localization?This isn't acceptable, we can't be asked to reupload all our assets for every update...
0
0
690
Apr ’18
Reply to Xcode 11 sims not working
Sorry for duplicate, I posted this yesterday and it disappeared. One can be deleted.I removed Xcode and did a clean install from AppStore. Exactly the same issue still.I can build and run on real device but not simulators. Same issue with missing UVKit.framework loading a SwiftUI project, no canvas and can't run on simulator.Yes, sorry, MacOS 10.15.
Sep ’19
Request for location services disappears before it can be tapped
HiI have an app (still in development) which has been running fine for a while. This morning it suddenly stopped being able to get a location (CLLocationCoordinate2D) from the location manager. I tried clean building and deleting and reinstalling the app on an iPhone and the situation got worse.Now when I launch the app the dialog that requests access to location services dissappears immediately it is displayed.I updated the phones IOS a couple of days ago but I'm not sure this is the issue as it was fine this morning.Does anyone know how I can fix this?Many thanks
5
0
2.2k
Feb ’18
Files & file changes disappear on APFS volume
I've been trying macOS High Sierra out, with APFS, & have noticed something disturbing. If the Mac crashes files recently created or downloaded have disappeared. Files recently changed have lost the changes. By recently I don't mean in the few minutes before the crash, but at least as far as 3 hours before the crash. I seriously hope this behaviour is resolved before High Sierra goes to public release.I originally posted this to Apple Support Communities & got an email suggesting I repost here. I wasn't posting chasing solutions, but if anyone has suggestions torwards solutions they're most welcome.
14
0
5.7k
Jun ’17
The App Store purchase button disappears when another window approaches
Since macOS 15.3.2, we have observed that when another window is moved near the App Store's install button, the button disappears. We have attached a related video in the Feedback submission here https://feedbackassistant.apple.com/feedback/20444423 Our application overlays a transparent, watermark-window on top of the system window, which causes the install button in the App Store to be hidden when a user attempts to install an application.Could you advise on how to avoid this issue?
0
0
206
Nov ’25
UICollectionView top cells disappear while animating keyboard appearance
I have UICollectionView with cells inside. Everything works well except one thing.During keyboard appearance animation, top cells that are about to go offscreen just disappear in place without any animation https://drive.google.com/file/d/17GROrgdqNDMZJf-ym-0FjT6NgFQHjelc/view?usp=sharingI have tried to implement finalLayoutAttributesForDisappearingItem but it has no any effect. Also tried to expand rect in layoutAttributesForElementsInRectoverride func layoutAttributesForElements(in rect: CGRect) -> [UICollectionViewLayoutAttributes]? { let rect = CGRect(x: rect.minX, y: rect.midY - 312, width: rect.width, height: rect.height + 312) return itemAttributesCache.filter { $0.frame.intersects(rect) } }but also with no luck.The only working solution that i found is to expand UICollectionView.frame above the screen to the keyboard height and set UICollectionView.contentInset.top to the keyboard height. It works but absolutely ugly.Any ideas how to fix it?
Topic: UI Frameworks SubTopic: UIKit Tags:
12
0
3.4k
Dec ’19
Reply to "An error was encountered while attempting to communicate with this device. (The service is invalid.)"
G'Day,For me, I've just had this same error message after updating iOS to the most recent version (in my case 13.3), and had connected it to Xcode for the first time since the upgrade. When looking at Devices under 'Devices and Simulators' I could see the yellow 'preparing for development' banner.Once that had completed and the banner had disappeared, build and running from Xcode on my iPhone was working fine.Cheers,Marcus
Topic: App & System Services SubTopic: Core OS Tags:
Dec ’19
Data in persistent store disappears after app restarting
I have main context in controller:let mainContext = (UIApplication.sharedApplication().delegate as! AppDelegate).managedObjectContextThen I create private context in my operation with passing reference to mainContext:privateContext = NSManagedObjectContext(concurrencyType: .PrivateQueueConcurrencyType) privateContext.parentContext = self.mainContext privateContext.performBlock { let someObj = NSEntityDescription.insertNewObjectForEntityForName(SomeObj.entityName, inManagedObjectContext: privateContext) as! SomeObj someObj.prop1 = some1 someObj.prop2 = some2 ... if privateContext.hasChanges { do { try privateContext.save() } catch let saveError as NSError { finishWithError(saveError) } } }And then I get saved items from my controller:var someObjArr = [SomeObj]() let mainContext = (UIApplication.sharedApplication().delegate as! AppDelegate).managedObjectContext let someObjRequest = NSFetchRequest(entityName: SomeObj.entityName) do { someObjArr = try mainContext.executeFetchRequest(someObjRequest) as! [SomeObj]
2
0
1.5k
Jan ’16
One of my recent version metrics disappear in Xcode organizer metrics
Hello, For one of my recent release (2 versions ago), I used to be able to check its p50 of Hang Rate, but now it disappear and not showing up in XCode Organizer Metrics anymore. The p90 of Hang Rate of this version is still there. It's so unpredictable. Is there something we can do to get this data to populate? If not, may I understand usually why this issue will happen, is it something frond-end bug or is it because there is some thing abnormal going on in the back-end data?
1
0
100
Apr ’25