Questions tagged [ios10.3]
121 questions
3
votes
1 answer
apple musickit user token
how to create music user token for Apple musikkit API's. Each time execute
SKCloudServiceController().requestPersonalizationToken(forClientToken: developerTokenString) { (userToken, error) in
if let token = userToken {
//
} else {
…

Saptarshi Goswami
- 51
- 5
3
votes
1 answer
Change App icon in iOS through Custom URL
I know we could change the app icon of the application in iOS 10.3 above and I achieved this successfully, but my question is that could we achieve this using a custom url.
Suppose that the app icon is stored in the backend server and the icon while…

Ajay Singh Mehra
- 1,313
- 9
- 19
3
votes
1 answer
how to hide previous date and month in iOS using swift 3?
i am using the helper libaray "WWCalendarTimeSelector"
GitHub link :- https://github.com/weilsonwonder/WWCalendarTimeSelector
I have a date for registration of user and it's 29/9/2017. Now I want to only enable dates between next date, month and…

Jayprakash Singh
- 1,343
- 3
- 15
- 28
3
votes
1 answer
Is it allowed to let the alternate app icon to be dynamic?
Since iOS 10.3 has been released, Apple added a new feature which allows us to change the app icon dynamically, by using setAlternateIconName(_:completionHandler:) method. So far, as mentioned in the method documentation, we have to mention the…

Ahmad F
- 30,560
- 17
- 97
- 143
3
votes
2 answers
iOS 11 UiTableViewCell Location issue
I have a four UITableView cell one after another. On iOS 10.3 the first cell is right after the status bar but in iOS 11 there is some space between the status bar and the first cell.

Mugunth Chandran
- 261
- 2
- 14
3
votes
1 answer
Need Support for Apple Pencil/Finger drawing on Swift 3
I am making use of swift 2.3 with TouchCanvas (Apple Pencil Sample App),
in which while drawing,
I am able to switch between pen/pencil/brush/eraser - thickness & colors and the same is applied correspondingly.
Ref:
Now I upgraded to swift 3.0,
in…

abdul sathar
- 2,395
- 2
- 28
- 38
3
votes
2 answers
SKStoreReviewController : How do I know user has rated the app to avoid alert in Future?
Here is the reference API:
[SKStoreReviewController requestReview];

Vikesh Prasad
- 779
- 7
- 13
3
votes
0 answers
Not Receiving Push Notification in IOS 10.3.1 and Receiving twice in ios 9
I am using Version 8.2.1. The Issue is I am not getting notifications in IOS 10.3.1 but I am getting notifications in IOS 9(but twice).
Here is my code which I tried :
//In **didFinishLaunchingWithOptions**
#define…

Mihir Oza
- 2,768
- 3
- 35
- 61
3
votes
1 answer
Crash in Release Mode while generating NSString with arguments
I have written Log helper class which has couple of Log functions. All is working well in DEBUG mode. But when I run my code is release mode it is crashing. Below is the code snippet:
+ (void)info:(NSString *)format, ...
{
va_list args;
…

Bhumeshwer katre
- 4,671
- 2
- 19
- 29
3
votes
0 answers
Swift PKPayment Request error
I'm currently working with a PKPaymentAuthorizationViewController and presenting it to validate a payment within my application. I am able to present the controller but receive an error stating "Invalid in-app payment request. PKPaymentRequest must…

Mike Carpenter
- 410
- 4
- 12
3
votes
1 answer
As of iOS 10.3: UIButton ignoring negative paragraph lineSpacing in NSAttributedString
I have a UIButton which is really just 2 words, wrapped to 2 lines (I set the lines value to "2" in code later). I have been tightening up the default lineSpacing by putting in a negative value for the paragraph lineSpacing (as simplified & shown…

eric
- 391
- 2
- 13
3
votes
1 answer
Dynamically added position:fixed element is in the wrong place
In an hybrid app we have at work we disable the scrolling when a dialog opens. This is something that used to work perfect, until iOS 10.3 came around.
The case:
The disabling of the scroll happens when a user clicks a button. An overlay is shown…

Wart Claes
- 223
- 1
- 11
3
votes
4 answers
xcode 8.3 Could not launch application process launch failed: unspecified
I have new installed Xcode 8.3 with iOS 10.3.
My application ran on iOS as expected and suddenly Xcode fails to run application on device with error:
Could not launch "My app" process launch failed: unspecified
It runs on Simulators and on other…

snaggs
- 5,543
- 17
- 64
- 127
2
votes
1 answer
Load Javascript files through HTML file on WKWebView in iOS
I have a requirement of loading Javascript files through HTML file. I have structured files in order shown in below screenshot.
HTML head tag contains the Javascript files to call as below:

Ganesh G
- 1,991
- 1
- 24
- 37
2
votes
1 answer
iOS - Dual Status bar overlay
I have been working on an application, and distributed it for testing one of my colleague has got this issue, the screenshot shows that has dual status bar, i asked him to reproduce the issue or give me the steps so that i can resolve it or at…

Vinaykrishnan
- 740
- 3
- 14
- 34