Questions tagged [ios8.4]

The launch of Apple Music on Tuesday brought with it a nearly all-new Music app, with a host of new functionality that blends the best of Beats Music with Apple's long-standing iTunes platform.

What's New in iOS 8.4 for iOS 8.4.

Release Notes for iOS 8.4.

80 questions
3
votes
1 answer

Cordova FileUploadOptions params not posted on iOS

Using an app built using build.phonegap.com I'm finding that the FileUploadOptions.params values aren't being posted - iOS (8.4.1) only posts the file multipart data. This isn't a server side error as I've watched the POST using tcpdump/Wireshark…
3
votes
1 answer

All built iOS apps get error "The application could not be verified"

When I build the app from my project and deploy it on device for debugging, it keeps getting error "App installation failed", "The application could not be verified". I tried the solution from similar topic which said "Delete old app on device and…
DJ Pop
  • 61
  • 6
2
votes
0 answers

UIAlertController is transparent on iPhone 5s/s 8.4 and crashes on iPhone 5s/s 9.3

Can any one have any idea about this. I have a simple code which is not working properly. UIAlertController is transparent on iPhone 5s/s 8.4 and it crashes on iPhone 5s/s 9.3. Code below: let alert = UIAlertController(title: "title",…
user942502
  • 111
  • 1
  • 7
2
votes
0 answers

SKVideoNode videoNodeWithFileNamed: crashes in iOS 8.4, fine in iOS 9

In iOS 8.4, our game is crashing when trying to initialize an SKVideoNode via filename, works just fine in iOS 9. Apple documentation states that the following method is supported in 8.0 and later (here): SKVideoNode *introVideoNode = [SKVideoNode…
Matt Fiocca
  • 1,533
  • 13
  • 21
2
votes
1 answer

Setting Custom Class in Xcode works for iOS 9.1 simulator but not iOS 8.4

I made a game where I need to cast the touched SKSpriteNode into a custom class. It works perfectly fine on the iOS 9.1 simulator but it cannot seem to cast at all in the iOS 8.4 simulator. In iOS 9.1, my class is an MyCustomClass type but in iOS…
David Gourde
  • 3,709
  • 2
  • 31
  • 65
2
votes
0 answers

How to drag and drop UIButton title to another button title but the original button remain in same place objective c?

I have created Uibutton programmatically as grid in scrollview.Now I need to drag and drop the UIbutton title to another button.But the original button title should remain same.I searched stackoverflow I found option to drag original button or label…
iniyan
  • 131
  • 3
  • 15
2
votes
0 answers

Crash on devices running iOS 8.4

Can anyone help here please? I submitted version 2 of my app only to have it rejected as it crashed on a number of devices running 8.4 …. {"bundleID":"properties.axxxxxxx.xxxxxxxxx”,”app_name”:”My App”,”share_with_app_devs":false,"name”:”My…
2
votes
0 answers

How can I find the size of an NSURLRequest's header?

I'm trying to figure out how much network traffic my application generates and receives. I know how to find the size of the message body, but I'm not sure how to size the header. How do I do this?
trekkieyk
  • 345
  • 2
  • 12
2
votes
1 answer

Google Mobile Ad issue with Web Trends SDK on iOS app

We have iOS app which is already integrated Web Trends SDK in our  iOS app, Now we are facing strange problem.   GoogleMobileAds does not work after integration with iOS app although it works if we remove Web Trends SDK.  Does GoogleMobileAds is not…
2
votes
0 answers

iOS 8.4 UIActivityIndicatorView rendering

It seems something is going wrong with UIActivityIndicatorViews in iOS 8.4... How it looks on 8.2: How it looks on 8.4: If you look closely you'll see that on iOS 8.4 it seems to be rendering at non-retina scale! The same also seems to be…
George Green
  • 4,807
  • 5
  • 31
  • 45
2
votes
3 answers

Sudden error "The iOS 8.4 simulator runtime is not available." in Xcode 6.4

I'm not sure what happened. All of a sudden the simulator doesn't work, and I haven't done a single thing differently with XCode. The simulator has been operative for the past 2 weeks, and when I went to run my program again, I got the error "The…
Niko
  • 147
  • 9
2
votes
1 answer

Pie Chart for Dynamic values in ios

I am beginner in iOS development .I am developing an application and I want create pie chart using dynamic data from JSON. Data will looks like: { "name": "Sales", "total_earning": "904006", "per": 40.41 }, { "name":…
Jaywant Khedkar
  • 5,941
  • 2
  • 44
  • 55
2
votes
1 answer

UILocalNotification Not Firing iOS 8.4

Printing description of localNotification: {fire date = Wednesday, August 5, 2015 at 9:00:00 AM India Standard Time, time zone = (null), repeat interval = NSCalendarUnitDay, repeat count = UILocalNotificationInfiniteRepeatCount, next fire date…
hardikdevios
  • 1,779
  • 14
  • 33
2
votes
0 answers

How to support iOS 7 with XCode 6.4 iOS 8.4 SDK?

My deployment target is 6.0, after installation is it greying out app icon on iOS 7 and below devices. Build installs fine on iOS 8 devices. Thanks, VP
2
votes
1 answer

Delegate methods of CLLocationManager didEnterRegion, didExitRegion and didDetermineState are not being called on iOS 8.4 (device)

I working on demo for Goefencing. Here's my code, - (void) registerRegionForMonitoring { if (self.locationManager == nil) { self.locationManager = [[CLLocationManager alloc] init]; self.locationManager.delegate = self; …
Nirav Valera
  • 420
  • 4
  • 13