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
1 answer

Apple Music detect is member

In iOS 9.3 Apple release new APIs. Now developers can see if a user is currently a member of Apple Music. I'm trying to understand how it works. My code -only first time- asks the user whether to access the music library but I don't understand how…
Joannes
  • 2,569
  • 3
  • 17
  • 39
1
vote
1 answer

What are the strong use cases for Gradle xcode plugin (openbakery) over using xcodebuild?

Ours is sn enterprise iOS project but simple one in which developers use Xcode to build the project. Are there sufficient reasons for me to convince them to use Gradle Xcode plugin (Openbakery) over Xcodebuild? One of the points I found in a…
Paddy
  • 3,472
  • 5
  • 29
  • 48
1
vote
1 answer

Cordova record audio on ios9 does not work

I am using Cordova to build an html5/JS app. I have to record and play audio, so i use Media & File plug-ins, but i have problem to make it work on iOS. My steps : 1) I detect platform (Android or iOS). If Android, no need to set anything, it…
David Anquetin
  • 151
  • 1
  • 9
1
vote
2 answers

Better way to compare custom objects of two NSArray and list out distinct objects in those array's

I have a model object called car which has following attributes Name Color Type In an array(Name: oldArray) I have several car objects. In a common Interval I will hit an API and get an another array (Name: newArray) of several car object. I need…
Peer Mohamed Thabib
  • 636
  • 2
  • 9
  • 29
1
vote
1 answer

Reload data in a UICollectionView - Swift

I am trying to create a simple calendar using UICollectionView. Everything seems to be working fine. I need to trade the calendar according to months i.e. when I click a button the month should be changed to previous month and the text in all the…
1
vote
1 answer

Updating Glance data in watchOS2.2

I'm hoping you smart people can help me as most of the data online is out of date. I have an iPhone app that displays financial information. I would like to present this on a watch glance screen. I can get the app to send the dictionary of the…
1
vote
2 answers

iOS 9: App Transport Security

I am trying to display the www.usta.com website in my application. I added the following keys to my .plist and the site loads some of the data. However, it will not load any of the images. Does anyone know why the images won't load? I am testing…
Sandy D.
  • 3,166
  • 1
  • 20
  • 31
1
vote
1 answer

App crashing after getting location permission in iOS 9.3.1

Hi I want to get user location, code works first time getting location in didUpdateLocations. But after few second app crashing. Crash is: Code I am using import UIKit import CoreLocation class HomeViewController: UIViewController,…
Abdul Rauf
  • 343
  • 1
  • 2
  • 15
1
vote
0 answers

App Installed from IPA distribution/development provisioning profile disappears after install

I'm working on a Unity Project that is to be built on iOS platform. I have a testing device iPad 3rd Gen and iPad mini 4 (both running on iOS 9.3.1), which builds and run for both devices (either xcode build or IPA install). What I want to do is…
1
vote
1 answer

ios9 Login with facebook sdk not working

if the facebook app is already installed it doesn't redirect to facebook app in ios 9.3 I am getting following issue. -canOpenURL: failed for URL: "fb://" - error: "This app is not allowed to query for scheme fb"
pankaj jha
  • 65
  • 9
1
vote
2 answers

iOS app cannot be deployed on device

I am developing an iOS app for iPads. I have two projects inside one workspace. When I try to deploy it on the iPad, I get absolutely no error or warning and I receive the "build succeeded" message. However, the app is not deployed on the iPad. The…
Muhsin Zahid Ugur
  • 533
  • 1
  • 5
  • 14
1
vote
1 answer

Swift - Button action not triggered in table view cell

I have a ViewController who contains a TableView. I want in each cell, a red button who did something (let's say 'hello' for test), or when I touch the cell anywhere but not on the button I perform a segue. But even when I touch the button, it's the…
Kev
  • 171
  • 2
  • 19
1
vote
2 answers

iOS app wake up with BLE not working as before on iOS9.3?

There are previous topics about waking up an application from the background with BLE advertisement (e.g. How to wake up iOS app with bluetooth signal (BLE), Android / iOS - BLE - wake up a terminated application when a BLE device connects). However…
1
vote
2 answers

NSUserDefaults standardUserDefaults stopped working using iOS 9.3.1

I'm using this code in my app: if ([[NSUserDefaults standardUserDefaults] objectForKey:@"First_RUN"] == NULL) { [self tutorial:nil]; [[NSUserDefaults standardUserDefaults] setInteger:1 forKey:@"First_RUN"]; [[NSUserDefaults…
Idan
  • 9,880
  • 10
  • 47
  • 76
1
vote
0 answers

How to do Collapsible and Expandable TableviewCell in storyboard

In Swift, how to do collapsible and expandable TableviewCell in storyboard using Disclosure Indicator as Accessory? I have come across some documents and cocoapods library where I can collapse and expand cell using xib files. But I wanted to do…