Questions tagged [ios9.3]

This tag should be used in questions that specifically relate to iOS 9.3. If the version does not matter use the iOS tag.

What Questions should have this tag?

This tag should be used in questions that specifically relate to iOS 9.3. If the version does not matter use the or tags.

Summary:

iOS 9.3 was released in March 21, 2016, builds versions are 13E233-13E234

iOS is a mobile operating system created and developed by Apple Inc. and distributed exclusively for Apple hardware. It is the operating system that presently powers many of the company's mobile devices, including the iPhone, iPad, and iPod touch. Programming for it is done in Swift and Objective-C. Wikipedia.

Related Tags

180 questions
0
votes
0 answers

iOS 9.3 How to use #selector for a method defined in subclass

I've multiple cells inherited from MyBaseCell class. In my ViewController class, I access those cells, type-cast them as MyBaseCell instance, and check if they respond to error label then assign error message to that label. It was easy using String…
Maverick
  • 3,209
  • 1
  • 34
  • 40
0
votes
1 answer

How to Dynamically Change UIImageView color in tableviewcell in Swift?

In Swift,I have a tableview and in that many tableview cells. In the tableview cell I have a UIImageView in which there is an Image . So now I want to dynamically change the colour of the image everytime the tableview loads,so that the image is…
0
votes
1 answer

ITMS 90362 - Issues submitting app to Apple store

I have created one framework which uses APNS using Xcode 7.2.1 which I am using in my App and trying to upload the build to the AppStore. While uploading app to the AppStore I am getting the issue below.
Sandeep Khade
  • 2,832
  • 3
  • 21
  • 37
0
votes
1 answer

Unable to dismissViewControllerAnimated iOS 9.3

I am showing an UIAlertController and in UIAlertAction I am dismissing view controller. It was working fine prior to iOS 9.3. But in iOS 9.3 it is not working. Following is the code. let alertController = UIAlertController(title: "Logged In…
Saqib Omer
  • 5,387
  • 7
  • 50
  • 71
0
votes
1 answer

UICollectionView Not Updated with custom UIViewController

I created a custom UIViewController and extended it to implement: UICollectionViewDataSource, UICollectionViewDelegate. In story board, I added UICollectionView and made reference from my controller to this UICollectionView (and setup the delegates…
0
votes
4 answers

Was there any method that can be called before didfinshlaunch to download data in iOS?

I want to download the data from server before launch I know there is a way to duplicate the launch view and load it till the success callback from service came But i need to know whether there is another UIapplicationprotocol method which can…
hacker
  • 8,919
  • 12
  • 62
  • 108
0
votes
2 answers

Error of "Ambiguous use of 'subscript'" shown after upgraded Xcode

After I upgrade my Xcode to the latest version. It shows this error. Not sure what it means.
Pak Ho Cheung
  • 1,382
  • 6
  • 22
  • 52
0
votes
1 answer

iOS 9.3 final build number

iOS 9.3 was released on march 21, 2016, and according to its download page, this version has two build numbers associated : Builds 13E233 13E234 I don't remember of any previous iOS version with multiple builds numbers, so it raised some…
Michaël Azevedo
  • 3,874
  • 7
  • 31
  • 45
-1
votes
1 answer

Why is NSScanner not finding the 1st occurrence of the target string?

I have a Obj-c app that was working; now it isn't. This is the portion of the string that I am trying to parse:
SpokaneDude
  • 4,856
  • 13
  • 64
  • 120
-1
votes
1 answer

Equality comparison result unused in iOS 9

I just moved to iOS 9 and noticed some new warnings on my old code: description.becomeFirstResponder == YES; Display warning 'Equality comparison result unused' How can I handle this Warning. Thank You!
Shriram Kadam
  • 394
  • 1
  • 4
  • 20
-1
votes
3 answers

Screen freeze while loading UIWebview

I am Loading HTML String in UIWebView,text content get loaded in a sec but there is lot of images in HTML String, cause of this image my UIWebView get freeze, after loaded all images my screen get free to use. Any Suggestion on this?
Nikunj Suthar
  • 39
  • 1
  • 4
-1
votes
2 answers

run test classes using xctest framework from a class

i am facing a problem. I want to do a ui test for my application. i have written six test class where my test cases are included. I can run my test cases using "command U" or the clicking in the run button. But i don't want to do like this. I…
Eric Ipsum
  • 723
  • 3
  • 10
  • 24
-2
votes
2 answers

How to send POST request with JSON data to external database for login app in IOS using Swift?

I am new in Swift and iOS. Please send me the sample code for POST request with JSON data to external database for login app in iOS using Swift
anand
  • 141
  • 1
  • 1
  • 9
-2
votes
1 answer

Facebook SDK iOS - User photos doesn't retrieving in release build but works perfectly in Debug build.

I am facing a weird bug with Facebook SDK. When i trying to request user photos from the SDK it works perfect with Debug mode. When i tried with Release mode it fails to retrieve the photos(But still works with iPad 4,iPhone 5 and old devices). I…
BigAppleBump
  • 1,096
  • 12
  • 26
-3
votes
1 answer

NSLocalizedString is not working for nsstring ios

I have NSString *str=@"some unknown value coming from server"; NSString *localizedVersion1 = NSLocalizedString(str, nil); NSLog(@"localizedVersion1 %@",localizedVersion1); Getting: localizedVersion1 some unknown value coming from server . It's…
1 2 3
11
12