Questions tagged [ios-permissions]

150 questions
0
votes
0 answers

IOS: How to update the notification permission to request one new option that wasn't requested before?

I have an app that already requested user permission for notifications before with the following 3 options: UNAuthorizationOptionBadge UNAuthorizationOptionSound UNAuthorizationOptionAlert Now I want to push an update for the app that requests…
0
votes
0 answers

Unity app crashes when built for iOS with camera enabled

I have an app which uses zxing to scan qr codes in the app. However when I build the app with these scripts in the scene the app crashes on startup. I thought it was something in the Awake() or Start() but I've wrapped those methods in a try catch,…
0
votes
1 answer

How can I customize permission request view in iOS

I know that it's not possible to customize for instance location permission view in iOS, but I'm wondering how AirBnb application do it? It have custom view for both location and notification permissions. I read that AirBnb mobile application is…
Davit Siradeghyan
  • 6,053
  • 6
  • 24
  • 29
0
votes
1 answer

Request for access to photo library prompt stays in the background

My request for photo library permissions prompt is supposed to pop up as soon as the app is launched. I have set up my info.plist with the library permission. I have tried both adding/removing the requestAuthorization(_:) function in my…
Samir K
  • 91
  • 2
  • 11
0
votes
2 answers

I cannot access the camera in a UIViewController

I really hope I'm not making a duplicate - but I read a ton different camera-questions inhere and implemented all of their answers, with the same result: Nothing happens! No errors, the app doesn't crash, no problems whatsoever - only there is no…
Anton Bjerg
  • 85
  • 2
  • 9
0
votes
1 answer

Check of Location permissions set

My iOS app has been rejected by Apple as the app crashes if a user selected "Dont allow" location access. And the proceeds to tap on my Map button. How can I wrap this button in check to see if the user has given permission, And if not how can I ask…
0
votes
1 answer

Where to find complete list of iOS app permissions?

Where to find complete list of iOS app permissions? For android you may find a complete list of normal and dangerous permissions, which apps could use: https://developer.android.com/guide/topics/permissions/requesting.html Of course I know the…
0
votes
1 answer

Ask for iOS permissions once in a while if they still denied

In my iOS app I have some things that need permissions from user. For example : permissions to receive push-notifications. I want to ask such users for enabling permissions once in a while until they will approve it. I don't want to ask each time…
moonvader
  • 19,761
  • 18
  • 67
  • 116
0
votes
1 answer

Permissions in iOS how to implement

Is it possible to make permissions in iOS? I know in android that I can set permissions in my manifest that if you do not have WI-FI that my app will not run on your device. Is there something similar in iOS? Can anyone provide either code and tell…
Ribbons Almark
  • 234
  • 2
  • 3
  • 9
0
votes
0 answers

How can I prevent IOS apps from resetting after changing permissions (such as Microphone, Camera, Photoes)?

My question is similar to "How can I prevent iOS apps from resetting after changing Camera permissions?". But I don't understand the answer very well . I set the microphone permission by the code as follow: -(BOOL)canRecord { __block BOOL…
Jin
  • 1
0
votes
1 answer

How to get ios permissions list from .ipa file

I am using java 1.8 and spring-boot-starter-parent 1.5.1.RELEASE version. I am trying to get list of permissions from .ipa file. I did fetch Android permissions from .apk, like extracted AndroidManifest.xml from .apk and get get permissions from…
SST
  • 2,054
  • 5
  • 35
  • 65
0
votes
1 answer

iOS: Switch PHPhotoLibrary permissions using settings

I'm checking for permissions to the camera roll: -(void)viewDidAppear:(BOOL)animated { [super viewDidAppear:YES]; PHAuthorizationStatus status = [PHPhotoLibrary authorizationStatus]; if (status != PHAuthorizationStatusNotDetermined) { …
user2924482
  • 8,380
  • 23
  • 89
  • 173
0
votes
2 answers

iOS 10 (Swift) Reject Notification Permissions

I want to have a UISwitch in my app that when pressed will either request notification authorization or if already authorized reject it. Is there a way to perform a rejection? I know that if requestAuthorization is called and the user has already…
mocode9
  • 229
  • 3
  • 16
0
votes
1 answer

Execute alertView after device permissions iOS

I am trying to present an alertview for users on their first launch of the app to give them instruction on how to use it. I am using the pod 'SCAlertView'. When I place the code in the viewDidLoad() or ViewWillAppear() section the code is not…
Onicha21
  • 141
  • 2
  • 11
0
votes
1 answer

Launching Permissions of ios application

Apple has documented ways to go to the settings app from any iOS app. But is there any way to launch the permissions (of the app) inside the settings app directly? I saw this private header (preferences framework) and it kind of seems to accomplish…
1 2 3
9
10