Posts

Post not yet marked as solved
2 Replies
405 Views
I am setting up iCloud storage (Cloudkit) for my ios app and I am wondering wether or not the storage is granted per user, or per app? Will the records in the Container contain records from many user's, or are each one of them granted their own storage in the Container?
Posted
by Lelelo.
Last updated
.
Post not yet marked as solved
1 Replies
363 Views
How does Search kit work for different languages? Does the text content in SKDoument need to match the user's language, or is there maybe a pre step where content is analysed and language detected by api. For instance, can a chinese user search english documents, or will there need to be a separate translation handled as well by us developers, to turned the document into text, or translating the query of the Chinese user to English?
Posted
by Lelelo.
Last updated
.
Post not yet marked as solved
2 Replies
700 Views
My iOS app shows desktop uses (50%) in App Store Connect Trends, but I have never enabled Apple Silicon Mac Availability in Pricing and Availability section of my app. It should not be available on mac - why does the trends section say so?
Posted
by Lelelo.
Last updated
.
Post not yet marked as solved
0 Replies
317 Views
I have set up `UITextContentType` for my UITextFields to create a form with autocomplete. However the "predictive area" above the keyboard does not show on Danish, Swedish or Norwegian keyboards. It is shows in english and german keyboards and is not directly related to the `pedictive` on/off keyboard settings - since the UITextContentType autofill suggestion is shown in the predective area - even though the `predective` keyboard setting disabled on the phoneThis is on ios version 12.3.1I hope to get my form autofill work in the listed languages.
Posted
by Lelelo.
Last updated
.
Post not yet marked as solved
0 Replies
582 Views
Are the raw and filtered gyroscope data both in radians per second?With the raw data I mean the values given from CMMotionManager:motionManager.gyroData.rotationRateAnd with filtered I mean with CMDeviceMotion:motionManager.deviceMotion.rotationRate
Posted
by Lelelo.
Last updated
.
Post not yet marked as solved
0 Replies
700 Views
I am using https://developer.apple.com/documentation/coremotion/cmdevicemotion?language=objc to messure the magnetic field like a teslameter. And It seem to give the correct values. However when disturbing the phone with metal (creating changes in the magnetic field) - and the metal is removed. The value as if the metal is still there is printed out for sometimes up to 20 - 25 seconds. You would expect the values to immedtly return to what they where before the metal was there - when the metal is moved out of the way.Here is the code I am currently using[self->_motionManager startDeviceMotionUpdatesUsingReferenceFrame:CMAttitudeReferenceFrameXArbitraryCorrectedZVertical toQueue:[NSOperationQueue mainQueue] withHandler:^(CMDeviceMotion *deviceMotion, NSError *error) { double x = deviceMotion.magneticField.field.x; double y = deviceMotion.magneticField.field.y; double z = deviceMotion.magneticField.field.z; double t = sqrt((x * x) + (y * y) + (z * z)); NSLog(@"startCalibratedMagnetometerUpdates: %f, %f, %f, %f", x, y, z, t); }];Also when comparing with a teslameter found on app store - that app does not get stuck when disturbed with metal - but has its values immediately returning when metal is being moved out of the way.What is creating this issue and how can I get my readings to be as responsive?
Posted
by Lelelo.
Last updated
.
Post marked as solved
9 Replies
2.8k Views
I am wondering what unit is given by the magnetometer https://developer.apple.com/documentation/coremotion/cmmotionmanager/1616032-magnetometerdata?language=objc. Does anyone know?
Posted
by Lelelo.
Last updated
.
Post not yet marked as solved
0 Replies
630 Views
Is it poossible to change the CameraControls https://developer.apple.com/documentation/uikit/uiimagepickercontroller/1619129-showscameracontrols?language=objc ?I would like to use the most part of what is inside the defualt cameraControls but I can only set the visiblity of it (turn it off) - or to check if is active or not. But how can I edit it? There does not seem to be anyway of getting the cameraControls from the UIImagePickerController.
Posted
by Lelelo.
Last updated
.
Post not yet marked as solved
1 Replies
624 Views
According to https://developer.apple.com/documentation/fileprovider - I can make files in the Documents folder accessible to other app's, by inlcuding two keys with my info.plist file. I have done this - and I can now open the iOS "Files" app and see the file there inside my app's own created storage area. But how I can I read them from another app? What is the valid URL?
Posted
by Lelelo.
Last updated
.
Post not yet marked as solved
7 Replies
1k Views
I am looking for a URL location on iOS where one app can place a file for another app to use - by providing a path to it . I wan't to use Custom URL-Schemes to send data. And to do it programatically. Is this possible or is it considered more secure to have to do this kind of action over the internet instead?
Posted
by Lelelo.
Last updated
.
Post marked as solved
6 Replies
7.7k Views
HelloI have used a gradle build script to build a .a static library file from a .m file - written in Objective-C. Now I would like to check if it's working by using the content of the library. When using #import "myLibraryName.a" I don't get access to any of it's contents. How can I use the content of the .a file in a .m file in a SingleViewProject of Xcode, Objective-C?
Posted
by Lelelo.
Last updated
.
Post not yet marked as solved
0 Replies
322 Views
HelloWhen a screenshot is taken in iOS a user has the option of entering a editing functionility, by pressing a window of the image which appears in the bottom left corner. Is it possible to enter this from an app, using a special URL scheme or something like that. I want to give the users of my app the possibility of entering this with a image from my app - and then return back to my app. Could it be possible somehow?This is the kind of URL scheme is what I would be looking for in the first place: https://developer.apple.com/library/content/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Inter-AppCommunication/Inter-AppCommunication.htmlBut if it could be done in another way, let me now!
Posted
by Lelelo.
Last updated
.
Post not yet marked as solved
2 Replies
780 Views
HelloI have a certain file type associated with my app. So that my app appears as a "open with" alterntive. However I would also like to get a notification if something of that file type gets deleted, so that my app can recognize/keep track of it. I think the iOS "Files" app does this, as it knows whether or not (any file in this case) gets deleted or gets added onto cloud apps. I would like to get notified for a special file type only.As a side note I also wonder if the opposite would be possible, sending a notification to ("Files" app in this case), that a file of a particular has been deleted/ or to have an actual request to it to have it deleted. So that I in the aftermath of all this can use "Files" as my point of storage.
Posted
by Lelelo.
Last updated
.