Posts

Post not yet marked as solved
5 Replies
5.1k Views
Is it possible to completely disable dynamic type for an app? If not, is it possible to disable the dynamic type feature for UITableViewCell classes?
Posted
by Neoos.
Last updated
.
Post not yet marked as solved
0 Replies
958 Views
Can push notifications finally be used in the simulator with Xcode 10 or is this still a missing feature?
Posted
by Neoos.
Last updated
.
Post not yet marked as solved
0 Replies
1.4k Views
In iOS 10.3 there was once this feature: "When a third party application invokes openURL: on a tel:/ facetime-audio:/, or facetime-audio:/iOS displays a prompt and requires user confirmation before dialing."This dialog confirmation was then removed again later on. Did iOS 11.4.1 reintroduce it?I do get the dialog with 11.4.1 but I do not get the dialog with 11.4. Strangely there's nothing mentioned about it in the release notes of 11.4.1
Posted
by Neoos.
Last updated
.
Post not yet marked as solved
2 Replies
3.1k Views
My app is crashing on iOS 11 when I swipe to delete on a UITableViewCell:2018-03-09 11:27:14.178099+0100 APP Dev[21820:47205020] *** Assertion failure in -[UISwipeActionController swipeHandlerDidBeginSwipe:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3698.33.6/SwipeActions/UISwipeActionController.m:2682018-03-09 11:27:14.205179+0100 APP Dev[21820:47205020] void uncaughtExceptionHandler(NSException *__strong) [Line 191] Exception handler2018-03-09 11:27:14.209685+0100 APP Dev[21820:47205020] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'No occurrence for index path (null)'On iOS 10 the behaviro is slightly different. The app does not crash but the delete button remains white and does not show (but the cell does slide).I've never seen this before. Am I doing something wrong or is this an iOS bug?
Posted
by Neoos.
Last updated
.
Post not yet marked as solved
0 Replies
494 Views
I'm using the CNContactPickerViewController like so:CNContactPickerViewController *vc = [CNContactPickerViewController new]; vc.delegate = self; [self presentViewController:vc animated:YES completion:nil];The picker is displayed correctly but when the search textfield at the top is selected, the top of the content is hidden behind the search bar. Is this a known issue or am I missing something?
Posted
by Neoos.
Last updated
.
Post not yet marked as solved
0 Replies
520 Views
Can an app opt out from the "Siri & Search" feature that is showing under "Settings", "MyAppName"?
Posted
by Neoos.
Last updated
.
Post not yet marked as solved
0 Replies
406 Views
The documentation at https://developer.apple.com/library/content/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/BackgroundExecution/BackgroundExecution.html"(Section "Using push notifications to initiate a download") states: "For a push notification to trigger a download operation, the notification’s payload must include the content-available key with its value set to 1. When that key is present, the system wakes the app in the background (or launches it into the background) and calls the app delegate’s application:didReceiveRemoteNotification:fetchCompletionHandler:..."Does "or launches it into the background" mean that the app will be started if it's in the state "not running"?
Posted
by Neoos.
Last updated
.
Post not yet marked as solved
0 Replies
377 Views
A killed app will be relaunched in the background when using "Significant Location Changes" (SLC) with the UIApplicationLaunchOptionsLocationKey argument. Is it possible to combine this with regular location updates in a way so that my app that is receiving location updates gets restarted in the background when killed? It seems to me that you can either startMonitoringSignificantLocationChanges or startUpdatingLocation but not both concurrently. Is there a way around this?
Posted
by Neoos.
Last updated
.
Post not yet marked as solved
6 Replies
3.9k Views
When setting "Bold Text" (under iOS Settings, General, Accessibility) to "On" the tintColor of a UIBarButtonItem doesn't have any effect.Very simple code:UIBarButtonItem *button = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:nil action:nil]; self.navigationItem.rightBarButtonItem = button; button.tintColor = [UIColor redColor];Produces the following as expected:But with "Bold Text" enabled it looks like this:Is this a known bug?
Posted
by Neoos.
Last updated
.
Post not yet marked as solved
0 Replies
1k Views
Opening a file with filename "myfile" did work in iOS 10 as long as the UTI was correctly defined. In iOS 11 for example office documents or quicktime movies do only show in UIDocumentInteractionController if they have the correct filename extension like myfile.docx or myfile.mp4.
Posted
by Neoos.
Last updated
.
Post not yet marked as solved
3 Replies
2.2k Views
My app uses PushKit. When I create a build with Xcode 9 beta 5 PushKit is not working anymore, neither on a iOS 10 nor on a iOS 11 device. The didUpdatePushCredentials and didReceiveIncomingPushWithPayload methods never get called. Also the VoIP setting in Xcode "Capabilities", "Background Modes" is gone. Is this a known beta 5 issue or do I have to enable it elsewhere?I also get this message, so I think PushKit should be working in order to have an alternative to the setKeepAliveTimeout method: The UIApplication method -[UIApplication setKeepAliveTimeout:handler:] is deprecated and no longer supported. Please use PushKit for VoIP applications instead of calling this method
Posted
by Neoos.
Last updated
.
Post not yet marked as solved
0 Replies
618 Views
Up until iOS 11 one could set the transform (CGAffineTransform) property of a UITableViewCell, for example to rotate the cell 180 degree. That transformation did also affect the UITableViewRowAction buttons. In iOS 11 (currently beta 6) the transformation does not affect the UITableViewRowAction buttons any more.Since the view of those buttons is not exposed via public API, there does not seem to be a workaround for this problem.Interestingly the order of the buttons is correct (destructive button on the right, other button on the left) but the label is obviously not transformed.This is how it looks in iOS 11 beta 6: (EDIT: somehow the forum does not seem to display my uploaded image)
Posted
by Neoos.
Last updated
.
Post not yet marked as solved
2 Replies
1k Views
Is there a known limit to the size of an UIImage?
Posted
by Neoos.
Last updated
.