Hi All,
Looking for some help.
I have an app that uses Charts and SwiftData.
I have created @Query that filters the records and charts displays Ints in a line graph by the date. Easy.
Most dates have two or more records.
What I need to do is add all the ints from the same day and use that result in the chart.
Any help you can send my way?
Thanks so much.
Blessings,
--Mark
Post
Replies
Boosts
Views
Activity
Hi
I have an enum of the TextFields in an Update SwiftData view. When the view opens, the focus is correct, and the button in the .toolbar keyboard sets the focus to nil and dismisses the keyboard. It works just fine.
But, if I tap on a different TextField other than the original field that the focus was set in a .onAppear, the button on the keyboard dims out and no longer works.
This same code works as expected in another view, the only difference in the Update view is that the data in the fields comes from an @Bindable variable.
Any clue what is going on?
Thanks so much!
Blessings,
--Mark
Hi,
The last two apps I created report the same error:
<CKError 0x283e221f0: "Bad Container" (1014); "Couldn't get container configuration from the server for container "iCloud.bundleID"">
Since the bundleID and the iCloud container are the same text, I figure there must be something wrong in the profile or certificate. No?
My other apps are working as expected.
I have the entitlement checked in the identifier, identical to the apps that are working.
Any idea?
Thanks.
Blessings,
--Mark
Hi
the Log is showing the following error after the app adds data to Core Data from a sheetView:
CoreData: error: CoreData+CloudKit: -[NSCloudKitMirroringDelegate tearDown:]_block_invoke(782): <NSCloudKitMirroringDelegate: 0x28379abc0>: Told to tear down with reason: Store Removed
I can't seem to find a reference to what is going on. Can someone point me in the right direction?
Thanks.
Blessings,
--Mark
Hi All,
I am stumped. An app IO created a while ago works fine with WIFI but no longer will work with cellular data.
It has never had this problem, and all the cellular and data are on.
Any ideas will be greatly appreciated.
Thanks.
Blessings,
--Mark
Hey all,
I submitted a build, noticed a show stopper, canceled the review of that build, now I have been waiting for hours for the cancellation to "process." This has always been automatic before.
Any clue how long this takes> I want to get the corrected build into review.
Thanks.
Blessings,
--Mark
Hi,
The canvas shows correctly all updates to the code, but when the run button is clicked, the keyboard is not working.
I have tried a new project, deleted the simulator plist in the preferences, of course, cleaned and built again.
Nothing works, and it is driving me nuts.
I run the code on a device or a simulator, works as expected, just not in the canvass.
Thought?
Thanks so much!
Blessings,
--Mark
Hi all,
Can anyone tell me why the following code works perfectly when it runs the first time, or when the app reloads? It does not however change the VC background image, although I can see it step through the code. The image does load correctly when the app is swiped away and reloaded.
I am stumped. Any thoughts would be much appreciated.
Blessings, --Mark
if CacheManager.getIsUserBackGround() {
								
								//get a refrerence to the the documents for the app
								let fileManager = FileManager.default
								//get the path from Constants
								let imagePath = Constants.getImage()
								
								
								//check if not nil, and if not set the background pict
								if imagePath != "" {
										if fileManager.fileExists(atPath: imagePath!) {
												
												DispatchQueue.main.async {
														let backgroundImage = UIImageView(frame: UIScreen.main.bounds)
														backgroundImage.image = UIImage(contentsOfFile: imagePath!)!
														backgroundImage.contentMode = UIView.ContentMode.scaleAspectFill
														self.view.insertSubview(backgroundImage, at: 0)
												}
												
										}else{
												DispatchQueue.main.async {
														print("error")
		//												Alerts.showAlert(title: "Attention", message: "A user selected image from the Photos Library has not been saved. \n \n Tap the Gear icon on the 'Lists' screen and select the 'Set background from Photos' option to save an image.", vc: self)
												}
												
										}
								}