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 AWSS3 TransferUtility fails to upload zip file

I'm trying to upload a zip file and facing this issues. When I try with the older version PutObject methods, the file is getting uploaded successfully but with the latest iOS sdk I am unable to upload file. _expression =…
Naman Vaishnav
  • 1,069
  • 1
  • 13
  • 24
0
votes
2 answers

Swift UICollectionView : didSelectItemAtIndexPath not responding

i have UICollection view in a ViewController and it's not responding to didSelectItemAtIndexPath at all. // super class class ViewController: UIViewController, iCarouselDelegate, iCarouselDataSource, UICollectionViewDelegate,…
0
votes
1 answer

UICollectionView Position and segmented Control programmatically error

I would like to place my collectionView right underneath my Segmented Control, however I dont know if I am getting my constraints wrong. I would like to also place my segmented control to fill the whole frame width minus ten but centered above the…
Aboogie
  • 450
  • 2
  • 9
  • 27
0
votes
1 answer

How to put blur effect on image which is being used as background of table view in swift 2?

I tried but it's not working properly. Please give the correct solution for this. I am calling this method setGradientBackground() inside viewDidload() method. func setGradientBackground() { self.myTableView.backgroundColor =…
anand
  • 141
  • 1
  • 1
  • 9
0
votes
1 answer

CNSetSupportedSSIDs failed in iOS9.3.5

after iOS 9.0, it should use NEHotspotHelper to deal CaptiveNetwork. But I want get some Compatibility before iOS9. so I do the old way. device: iphone6 iOS version: 9.3.9 my code is below: + (void)registerNetwork:(NSString *)ssid{ NSString…
qiushuitian
  • 1,261
  • 4
  • 19
  • 31
0
votes
0 answers

How to change Xcode behavior? Change breakpoint setting in Xcode Setting?

How to change breakpoint setting in Xcode? I am using Xcode 7.3.1 and I want to change my breakpoint setting. Please check below screen shot. How can I change setting? Currently display breakpoint on Xcode :- I am using Xcode 7.3.1 and I want to…
0
votes
2 answers

Sign-in with google doesn't work properly on iOS 9

I am implementing Sign-In with google in my application using cocoa-pods. I have followed everything in https://developers.google.com/identity/sign-in/ios/sign-in. I have added URL schemes as well. But when I tried to login with google account in…
Nilesh
  • 438
  • 5
  • 15
0
votes
1 answer

Getting UTC time for any time and handling daylight saving as well

I have written a function to get UTC time string corresponding to any time string passed as an argument to function. +(NSString *)getUTCTime:(NSString *)selectedTime { NSString *strFormat; if ([self is24HourFormat:selectedTime]){ …
Varun Mehta
  • 1,733
  • 3
  • 18
  • 39
0
votes
1 answer

iOS 9 : Add Action When Push "Back To App" Button

I've created 2 app. The first app can send value to the second app to process (URL Scheme). After success in the second app, it can open the first app and give a response using UIButton. but how to detect "back to app" is pressed so I can add action…
victorz
  • 39
  • 1
  • 12
0
votes
1 answer

Attributed text not showing text attachments in UITextView

I'm trying to add image to the text view text -(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{ UIImage *image = [info…
Teja Nandamuri
  • 11,045
  • 6
  • 57
  • 109
0
votes
3 answers

link does not open from app in safari in iOS 9.0 but works in iOS 9.3

I know this question is answered for many same time of title or with different title.I am trying below code. UIApplication.sharedApplication().openURL(videoURL) This line of code works fine in iOS simulator 8.xx/9.xx and returns true. But When I…
Manish Singh
  • 310
  • 1
  • 5
  • 19
0
votes
1 answer

application:(UIApplication *)app openURL:(NSURL *)url options: not Working for Instagram?

HI working in an iOS App, needed to connect with Facebook and Instagram. In AppDelegate am using application:(UIApplication *)app openURL:(NSURL *)url options: which working fine for Facebook but not being called in case of Instagram connection.…
Nisar Ahmad
  • 885
  • 1
  • 10
  • 25
0
votes
1 answer

iOS 9 specific linker error with respect to WebKit.framework

I am receiving the following linker error on iOS 9 and above. I am stuck with this issue for quite sometime. Any help would be appreciable. ld: file not found: /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy for architecture…
KrishnaKumar
  • 188
  • 10
0
votes
3 answers

Place api gives with internal error

The operation couldn’t be completed. An internal error occurred in the Places API library. If you believe this error represents a bug, please file a report using the instructions on our community and support page…
MuraliMohan
  • 1,063
  • 1
  • 11
  • 30
0
votes
3 answers

Creating Dialog issue in private Chat with Quickblox

I am trying to implement private 1 to 1 chat with QuickBlox but following the Quickblox docs only shows for group chat in http://quickblox.com/developers/Chat#Create_dialog . When I try sending just single occupants_ids, it gives following error…
user6500031