Questions tagged [ios10.3]
121 questions
0
votes
1 answer
how to display multiple contact of a single user swift 3
I am fetching user's information like his name,phone number and email id from contacts.But it is only showing first contact number.IF a person has more than one contact number,it didnt show that second number.Can someone help?I am using this…
user7646878
0
votes
0 answers
Notifications occuring, but not receiving them in delivered notifications function. iOS10/Swift3/UserNotifications
Currently, I am trying to get an event to trigger after a user has received a notification. Notifications are appearing at the correct time. However, the function that checks for delivered notifications never shows any delivered notifications. I…

bluecandle
- 1
- 1
0
votes
1 answer
Blank or half-loaded PDF when opened by UIDocumentInteractionController (iOS 10.3)
We are using UIDocumentInteractionController to display PDF preview in our app. It worked perfectly before upgrade to iOS 10.3. Now by opening document it either shows only one page or the complete blank document.
PDF-file is stored in app cache…

Andrey Sedelnikov
- 71
- 5
0
votes
2 answers
call a specific View Controller when remotepush notification is clicked in swift
I want to show push notification in a specific view controller when tap on notification and also want to send data from notification to view controller. I am using swift for development

Aashutosh Kumar
- 183
- 4
- 12
0
votes
1 answer
iOS 10.3.1 update breaks some NSAttributedString properties?
I'm going to ask and then answer my own question in the hope that this will help someone.
Our app used NSMutableAttributedString to define a strikethrough attribute for certain parts of our string.
NSRange range = [fullString…

Peter Brockmann
- 3,594
- 3
- 28
- 28
0
votes
1 answer
iOS 10.3.1 enterprise application download error : Cannot connect to “Web server address” only for one wifi network
Our website has a link to download the enterprise application build and it was working fine before. In iOS10.3.1 this link stops working only in one of our Wifi NetWork "ABC Net". It's giving an error message: Cannot connect to “Web server…

Chathura Palihakkara
- 904
- 9
- 24
0
votes
0 answers
-[NSParagraphStyle isEqualToString:]: unrecognized selector sent to instance 0x1702b2480 in iOS10.3
NSMutableParagraphStyle *paragraph=[[NSMutableParagraphStyle
defaultParagraphStyle] mutableCopy];
[paragraph setLineBreakMode:NSLineBreakByCharWrapping];
NSDictionary *attrs = [NSDictionary dictionaryWithObjectsAndKeys:FONT_14,…

yan
- 21
0
votes
1 answer
Filter navigation properties of one-to-many
I have a model Category with the relationship property articles with is an NSOrderedSet.
Now I want to get all Categories with the articles where a certain condition is fulfilled, in SQL I would write:
SELECT *
FROM Category AS cat
JOIN Article AS…

Mario
- 978
- 2
- 11
- 31
0
votes
1 answer
Hybrid mobile app developed with IBM MobileFirst Platform v7.1 (incl. Dojo Toolkit SDK 1.10.3) crashes after upgrading to iOS 10.3
I have a hybrid mobile app developed with IBM MobileFirst Platform v7.1 with Dojo mobile. After upgrading to iOS 10.3 the app crashes every time when a user scrolls. I believe the problem is related to dojo Scrollable View. Crash report says…

MariiaZ
- 56
- 10
0
votes
0 answers
Release build crashing on Fast, Whole Module Optimization settings
I have an app which contains both swift and Objective C code and it crashes at a specific point only on release build mode if I set the optimization level to Fast, Whole Module Optimization and on log it gives me error and there are no other…

Francis F
- 3,157
- 3
- 41
- 79
0
votes
1 answer
Can I upload iOS App to AppStore using Xcode 8.2, even if apple has release Xcode 8.3 and iOS 10.3
As stated by apple in Xcode 8.3 release notes
Xcode 8.3 no longer supports Swift 2.3.
I have a lot of work before I migrate to Swift 3.0 And I want My app on AppStore soon before I migrate.
Keeping in mind that apple has recently relaease a new…

Siddharth Paneri
- 149
- 10
0
votes
0 answers
SSL error not occuring in IOS 10.3
In our app ATS is enabled and we are using a server that is not using TLS 1.2.
In ios 10.1 and 10.2 when trying to connect this server,connection fails with the below error.
This is not observed in iOS 10.3. Connection is establishing…

UdayM
- 1,725
- 16
- 34
0
votes
1 answer
iOS 10.3 in-purchases stopped working
after new iOS 10.3 launched, In-Purchases functional stopped working in application suddenly. Actually, this method doesn't call anymore.
func requestDidFinish(request: SKRequest) {
if let receiptURL = NSBundle.mainBundle().appStoreReceiptURL {
…

Svitlana
- 2,938
- 1
- 29
- 38
0
votes
0 answers
Set NSStrikethroughStyleAttributeName for UILabel not work in iOS 10.3
This is example code :
NSMutableAttributedString * str=[[NSMutableAttributedString alloc]initWithString:@"$198"];
[str addAttribute:NSStrikethroughStyleAttributeName value:@2 range:NSMakeRange(0,[str length])];
yourLabel.attributedText =…

taitanxiami
- 109
- 11
-1
votes
1 answer
UISearchBar And UISearchBarTextField heigh on different IOS versions
I have used a UISearchbar in a controller. When I test it in IOS 13 UISearchBar height is 56 and UISearchBarTextField heigh is 36 but When I test in IOS 10.3 UISearchBar heght is 44 and TextField height is 28. I want to make it same in all…

ahmetvefa53
- 581
- 6
- 20