Search results for

“build disappears”

51,301 results found

Post

Replies

Boosts

Views

Activity

Disappearing Wi-fi bar in Xamarin iOS app
We have requirement in our project that we need to activate or deactivate audio in some of the screens and whenever we deactivate audio, we are facing problem like iPhone status bar is refreshing and some time icons in status bar like WIFI, battery and signal icons are disappearing and appearing after sometime or when we navigate through different screens in the app. Note: We have enabled one of the background mode setting called “Audio, AirPlay and Picture in Picture” in Info.plist. If we disabled above setting called “Audio, AirPlay and Picture in Picture” in Info.plist, we are not getting above problem like refreshing of status bar and disappearing of WIFI and other icons. Can any one please help us to resolve above issue without disabling the “Audio, AirPlay and Picture in Picture” in Info.plist I have tried below code to deactivate audio using AVAudioSession in Xamarin.IOs but didn't work var session = AVAudioSession.SharedInstance(); session.SetCategory(AVAudioSessionCategory.Playback)
0
0
387
Jun ’21
When PKCanvasView is first drawn, existing drawing objects disappear.
When PKCanvasView is first drawn, existing drawing objects disappear. PKDrawing, which previously had drawings saved with PKCanvasView, was saved as separate data or file. After that, while creating a new PKCanvasView, I loaded the saved PKDrawing and reflected it in the new PKCanvasView. Below is the code. canvasView!.drawing = draw! Previously saved text or lines will be displayed normally. However, when I draw with the pen for the first time (when I touch the screen with the pen), the old writing or lines disappear. And after I leave a line or text, if I pan across the screen, the old text or line appears again. If this phenomenon occurs and you touch the screen again with the fan, this phenomenon will no longer occur. This phenomenon occurs the first time when a new PKCanvasView is declared and the previously saved PKDrawing is reflected. Could you please help me with why this phenomenon occurs and how to improve it?
4
0
981
Mar ’24
Location permission dialog disappears after 1 second
I just want to ask my user for a one-time location permission. However, when I click the button that activates the permission dialog, it disappears after one second. This has been brought up before - https://stackoverflow.com/questions/61993353/request-user-location-permission-in-swiftui - however I am already following this advice and storing @ObservedObject var locationManager = LocationManager() as a class variable in my view. View } Model } Any idea what the problem is?
5
0
1.7k
May ’21
System logging messages disappear after about 90 seconds
I'm having an issue with logging on my system (Sonoma 14.3.1), in that log messages disappear after 60-90 seconds, despite logging being configured to persist. This seems to happen across all subsystems. The symptoms are: • Watching the log stream in Console.app, messages older than 60-90 seconds disappear, even if no new messages are coming in. • log show --last 2d only returns messages from the last couple of minutes. I've filed FB13616761, but wondered if anyone had any other insights or suggestions. TIA
0
0
764
Feb ’24
Reply to All apps gone
Did you do something special just before apps disappear ? Have a look here: https://www.imobie.com/support/apps-disappeared-from-iphone.htm https://www.tuneskit.com/ios-repair/apps-disappeared-on-iphone.html
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’22
Content Blocker Disappears from Mac Safari Settings
I have had content blockers in the Mac App Store for years. Ever since moving to Sonoma, doing a clean build or archive in XCode deletes the extension from Safari settings since it never gets into the built app. The only way for me to get it back is to remove the DerivedData and target, reboot, and create a target with a different name. That works and stays around in Safari settings as long as I only build and don't clean. However, a clean or an archive removes it again. Restoring a version of the project from Time Machine that was posted to the App Store weeks or months ago doesn't work. However I can download the version of the app in the App Store, and it works, but I can't build it now from the source code that was used to build that version without going through the above process. Moving from Sonoma 14.7.1 to 14.7.2 didn't work. I would move to Sequoia if I had reason to believe that would work, but I don't. Safari 18.2, Sonoma 14.7.2, 32GB, 2.2 GHz 6-Core Intel Core i
2
0
324
Mar ’25
USDZ Disappearing objects behind transparant texture (glass)
Hi all, We have a working model with transparant front (to simulate glass), this successfully reflects like the surrounding border, while being transparant. However, there seem to be some glitches on various angles. There are some objects behind the glass that disappear when viewing it from the sides. Also when viewed from a low angle. They reappear whenever the AR view gets in front of the object again.
2
0
563
Sep ’21
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
SwiftData Tables disappearing while test my app!
I begin testing my IOS swiftdats Xcode 15 swift 5 on Sonoma and I am able to create my siwftdata tables as well as add records to several of the tables, Then as I proceeded with my te tables disappear and I get this error in the Xcode debug console: error: Error: Persistent History (6) has to be truncated due to the following entities being removed: ( AppSettings, Invoice, Clientele, Pay, InvoiceItem, TrackingArt ) This app used to work fine and as I was making changes it started behaving in this manner. Beside the code I will supply the entire debug console with the attached file debugConsole.txt Here is how I have the swift data containers setup. import SwiftData import TipKit import CloudKit @main struct ArtManagerApp: App { @StateObject private var copyInvoiceDetails = CopyInvoiceDetails() @StateObject private var copyPaymentDetails = CopyPaymentDetails() @StateObject private var artTypeSettings = ArtTypeSettings() @StateObject private var tipManager = TipManager() // @Query(sort: ArtPiece.artPie
7
0
1.4k
Aug ’24
SwiftUI Charts AxisValueLabel disappears when using centered: true
Hi there, When using the AxisValueLabel in Swift Charts, the moment you add centered: true, the month or day on the right disappears. This has been a bug for over five months since I looked through other developer forums and they had the same issue. AxisValueLabel(format: .dateTime.weekday(), centered: true) leads to the following view: Now if we remove the centered: true, saturday will appear. It is probably a spacing issue, but since these are modifiers provided by Apple, it should do it correctly, right? If I am missing something and this is by desing, please enlighten me. Best Til
1
0
1.4k
May ’23
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
497
Dec ’23
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
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
619
May ’22
Disappearing Wi-fi bar in Xamarin iOS app
We have requirement in our project that we need to activate or deactivate audio in some of the screens and whenever we deactivate audio, we are facing problem like iPhone status bar is refreshing and some time icons in status bar like WIFI, battery and signal icons are disappearing and appearing after sometime or when we navigate through different screens in the app. Note: We have enabled one of the background mode setting called “Audio, AirPlay and Picture in Picture” in Info.plist. If we disabled above setting called “Audio, AirPlay and Picture in Picture” in Info.plist, we are not getting above problem like refreshing of status bar and disappearing of WIFI and other icons. Can any one please help us to resolve above issue without disabling the “Audio, AirPlay and Picture in Picture” in Info.plist I have tried below code to deactivate audio using AVAudioSession in Xamarin.IOs but didn't work var session = AVAudioSession.SharedInstance(); session.SetCategory(AVAudioSessionCategory.Playback)
Replies
0
Boosts
0
Views
387
Activity
Jun ’21
When PKCanvasView is first drawn, existing drawing objects disappear.
When PKCanvasView is first drawn, existing drawing objects disappear. PKDrawing, which previously had drawings saved with PKCanvasView, was saved as separate data or file. After that, while creating a new PKCanvasView, I loaded the saved PKDrawing and reflected it in the new PKCanvasView. Below is the code. canvasView!.drawing = draw! Previously saved text or lines will be displayed normally. However, when I draw with the pen for the first time (when I touch the screen with the pen), the old writing or lines disappear. And after I leave a line or text, if I pan across the screen, the old text or line appears again. If this phenomenon occurs and you touch the screen again with the fan, this phenomenon will no longer occur. This phenomenon occurs the first time when a new PKCanvasView is declared and the previously saved PKDrawing is reflected. Could you please help me with why this phenomenon occurs and how to improve it?
Replies
4
Boosts
0
Views
981
Activity
Mar ’24
Location permission dialog disappears after 1 second
I just want to ask my user for a one-time location permission. However, when I click the button that activates the permission dialog, it disappears after one second. This has been brought up before - https://stackoverflow.com/questions/61993353/request-user-location-permission-in-swiftui - however I am already following this advice and storing @ObservedObject var locationManager = LocationManager() as a class variable in my view. View } Model } Any idea what the problem is?
Replies
5
Boosts
0
Views
1.7k
Activity
May ’21
System logging messages disappear after about 90 seconds
I'm having an issue with logging on my system (Sonoma 14.3.1), in that log messages disappear after 60-90 seconds, despite logging being configured to persist. This seems to happen across all subsystems. The symptoms are: • Watching the log stream in Console.app, messages older than 60-90 seconds disappear, even if no new messages are coming in. • log show --last 2d only returns messages from the last couple of minutes. I've filed FB13616761, but wondered if anyone had any other insights or suggestions. TIA
Replies
0
Boosts
0
Views
764
Activity
Feb ’24
Reply to All apps gone
Did you do something special just before apps disappear ? Have a look here: https://www.imobie.com/support/apps-disappeared-from-iphone.htm https://www.tuneskit.com/ios-repair/apps-disappeared-on-iphone.html
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’22
Content Blocker Disappears from Mac Safari Settings
I have had content blockers in the Mac App Store for years. Ever since moving to Sonoma, doing a clean build or archive in XCode deletes the extension from Safari settings since it never gets into the built app. The only way for me to get it back is to remove the DerivedData and target, reboot, and create a target with a different name. That works and stays around in Safari settings as long as I only build and don't clean. However, a clean or an archive removes it again. Restoring a version of the project from Time Machine that was posted to the App Store weeks or months ago doesn't work. However I can download the version of the app in the App Store, and it works, but I can't build it now from the source code that was used to build that version without going through the above process. Moving from Sonoma 14.7.1 to 14.7.2 didn't work. I would move to Sequoia if I had reason to believe that would work, but I don't. Safari 18.2, Sonoma 14.7.2, 32GB, 2.2 GHz 6-Core Intel Core i
Replies
2
Boosts
0
Views
324
Activity
Mar ’25
USDZ Disappearing objects behind transparant texture (glass)
Hi all, We have a working model with transparant front (to simulate glass), this successfully reflects like the surrounding border, while being transparant. However, there seem to be some glitches on various angles. There are some objects behind the glass that disappear when viewing it from the sides. Also when viewed from a low angle. They reappear whenever the AR view gets in front of the object again.
Replies
2
Boosts
0
Views
563
Activity
Sep ’21
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.
Replies
Boosts
Views
Activity
Sep ’16
SwiftData Tables disappearing while test my app!
I begin testing my IOS swiftdats Xcode 15 swift 5 on Sonoma and I am able to create my siwftdata tables as well as add records to several of the tables, Then as I proceeded with my te tables disappear and I get this error in the Xcode debug console: error: Error: Persistent History (6) has to be truncated due to the following entities being removed: ( AppSettings, Invoice, Clientele, Pay, InvoiceItem, TrackingArt ) This app used to work fine and as I was making changes it started behaving in this manner. Beside the code I will supply the entire debug console with the attached file debugConsole.txt Here is how I have the swift data containers setup. import SwiftData import TipKit import CloudKit @main struct ArtManagerApp: App { @StateObject private var copyInvoiceDetails = CopyInvoiceDetails() @StateObject private var copyPaymentDetails = CopyPaymentDetails() @StateObject private var artTypeSettings = ArtTypeSettings() @StateObject private var tipManager = TipManager() // @Query(sort: ArtPiece.artPie
Replies
7
Boosts
0
Views
1.4k
Activity
Aug ’24
SwiftUI Charts AxisValueLabel disappears when using centered: true
Hi there, When using the AxisValueLabel in Swift Charts, the moment you add centered: true, the month or day on the right disappears. This has been a bug for over five months since I looked through other developer forums and they had the same issue. AxisValueLabel(format: .dateTime.weekday(), centered: true) leads to the following view: Now if we remove the centered: true, saturday will appear. It is probably a spacing issue, but since these are modifiers provided by Apple, it should do it correctly, right? If I am missing something and this is by desing, please enlighten me. Best Til
Replies
1
Boosts
0
Views
1.4k
Activity
May ’23
The "简单搜索" App Disappeared from the App Store
Hello, 简单搜索 App Disappeared from the App Store,Bundle Identifier is com.baidu.searchcraft,Could you please help me figure out why this happened?
Replies
1
Boosts
0
Views
319
Activity
Dec ’24
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:
Replies
0
Boosts
0
Views
497
Activity
Dec ’23
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.
Replies
Boosts
Views
Activity
Jul ’17
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
Replies
1
Boosts
0
Views
619
Activity
May ’22
Reply to XCode 14 compile errors immediately disappear or do not appear at all
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 ....
Replies
Boosts
Views
Activity
Feb ’23