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
1
vote
2 answers

Swift 3 - How to download Profile Image from FireBase Storage

I need help on retrieving Image from firebase storage, i learned how to save it but cant download it to current user profile. here is my code so far: FIRAuth.auth()?.createUserWithEmail(email!, password: password!, completion: { (authData, error)…
Alex Ry
  • 11
  • 1
  • 3
1
vote
0 answers

Transferring projects

How do I get all my content from the main storyboard of one project to another separate project? I need to transfer the project because strange errors are occurring that go away if I transfer, but I don't want to lose my storyboard content which…
Scott Perry
  • 71
  • 1
  • 1
  • 6
1
vote
0 answers

HTTP GET request format + iOS 9 + Swift 2.2

I am having trouble completing a GET request to my server. I am getting a response from the server, all of the parameters are being accepted except for the last one which is the signature. Below is the documentation…
Tom DelFranco
  • 31
  • 1
  • 5
1
vote
0 answers

Crashed: com.apple.main-thread EXC_BAD_ACCESS KERN_PROTECTION_FAILURE 0x000000016fc8fbc8

I am getting crash in [NSString stringWithFormat:]. I got it from Crashlytics. Following is the call stack and other information just above my app's last call OS Version: 9.3.3 (13G34) Device: iPhone 6s Plus RAM Free: 8.7% Disk Free:…
Manish Nahar
  • 834
  • 10
  • 24
1
vote
1 answer

Why background location is not working after kill/Terminate app in iOS 9.3

Background location not working after kill/ Terminate application. I am using in my application NSLocationAlwaysUsageDescription and Background fetch also on from Capabilities, here my code is : import UIKit import CoreLocation class…
Anand Nimje
  • 6,163
  • 4
  • 24
  • 43
1
vote
1 answer

iOS app does not recognize my beacon

I just found out about iBeacon last week and thought I'd give it a go. I bought this beacon on Amazon. https://www.amazon.com/gp/product/B010Q2PUGA/ref=oh_aui_detailpage_o00_s00?ie=UTF8&psc=1 Using the Light Blue app, I am able to read the beacon…
MWW
  • 13
  • 4
1
vote
0 answers

Why is UIScrollView not working in xcode 7?

I created a UIScrollView and SubView in XCode 5 and iOS 7. Its Working fine but I am running in XCode 7 and its not scrolling. I set AutoLayouts to UIScrollview. I wrote code in ViewDidLayoutSubviews Method. billViewScrolled2 is CustomView…
ppp
  • 47
  • 6
1
vote
1 answer

UITextField for Phone number with placeholder

I am using below code from another post to format UITextField for phone number in US but when the user starts typing instead of clearing the text I want the placeholder to stay. For eg. +1 (XXX) XXX-XXXX after typing should be like +1 (23X)…
Ankit Khanna
  • 1,019
  • 2
  • 12
  • 22
1
vote
1 answer

UIPickerView separator line missing in iOS9.3

I am using swift with xcode7.3.1. In my xib file added picker view showing separator lines like the following screenshot But when i run app in simulator then missing separator line like the following screenshot. How to solve this issue.Please help…
IKKA
  • 6,297
  • 7
  • 50
  • 88
1
vote
1 answer

Implement UISearchController with table view initially hidden in Swift iOS 9

I am trying to implement search bar in a view which would display filtered info as typed in the search bar dynamically in a table view. Also table view should initially be hidden until user doesn't starts typing. I have searched for the same but all…
Sam
  • 521
  • 1
  • 6
  • 23
1
vote
0 answers

Unable to copy symbols from this device Xcode 7.3.1

I got this popup when I try to run my application on 9.3 iOS device. I read all the threads over the internet,tried to reset my phone,delete moduleCache and derivedData,reset Xcode, reset the privacy settings,I saw that may be a hard disk space…
Zach Bublil
  • 857
  • 10
  • 28
1
vote
0 answers

Xcode doesn't run app on devices but simulator. dyld: Library not loaded, Reason: image not found

I am trying to run an open source project on my Xcode to my devices. The app runs normally on simulator. But has fatal error when running on a device. dyld: Library not loaded: …
Kevin Science
  • 303
  • 4
  • 18
1
vote
3 answers

canPerformUnwindSegueAction never gets called in UITableViewController unwind Segue

I have an unwind segue that was working fine until I upgraded to iOS 9/XCode 7. Here's a screenshot of the Storyboard config for the unwind segue: The unwind segue is triggered off of pushing a "Done" button in the UINavigationController. I…
Sly
  • 743
  • 13
  • 38
1
vote
1 answer

Will my AirPrint Code connect to an IPv6-only Printer?

Below is my code to connect to an IPv4 Printer. Everything is OK. NSString *printerURL = @"ipp://192.168.1.3:631/ipp/print" //IPv4 : OK UIPrinter *myPrint = [UIPrinter printerWithURL:[NSURL URLWithString:printerURL]]; [myPrint…
Nam Vu
  • 5,669
  • 7
  • 58
  • 90
1
vote
0 answers

apple music app create playlist by third part apps

I wants to create a playlist named "My App Playlist" on apple music from my application. So that user can able to save tracks played from my application. How can i meet my requirement .
Anupam Mishra
  • 3,408
  • 5
  • 35
  • 63