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
37
votes
2 answers

An AVPlayerItem cannot be associated with more than one instance of AVPlayer in iOS 8.4

After updating to iOS 8.4 I am getting the infamous exception with MPMoviePlayerController that says: An AVPlayerItem cannot be associated with more than one instance of AVPlayer I have seen several workarounds that mainly consist of reinitialising…
pajevic
  • 4,607
  • 4
  • 39
  • 73
30
votes
2 answers

MPMediaPickerController doesn't indicate selection when allowsPickingMultipleItems = true

MPMediaPickerController used to give a visual indication that an item was selected prior to iOS 8.4. In 8.4 when a picker is displayed and allowsPickingMultipleItems is set to true, it does show that items are selected in…
Vizllx
  • 9,135
  • 1
  • 41
  • 79
21
votes
3 answers

snapshotViewAfterScreenUpdates glitch on iOS 8

I've noticed running this would cause view (or main window, not sure) to resize for a moment, when running on iPhone 6/6+ simulator scaled from iPhone 5 layout (without passing launch image for iPhone 6/6+): [self.view…
Dannie P
  • 4,464
  • 3
  • 29
  • 48
15
votes
3 answers

MPMoviePlayerController initialPlaybackTime property not working in iOS 8.4

After setting initialPlaybackTime property, the video(HTTP streaming) still plays from the beginning. The same code works well in iOS <= 8.3: self.moviePlayer.initialPlaybackTime = self.lastPlaybackTime; [self.moviePlayer play];
freestyler
  • 5,224
  • 2
  • 32
  • 39
14
votes
2 answers

iOS 8.4 AVFoundation _attachToPlayer or _attachToFigPlayer crash | An AVPlayerItem cannot be associated with more than one instance of AVPlayer

I've just got a message form crashlytics that my app stability went to hell! basically this is the crash that exploded with the last update in iOS (8.4), and it was non-existent in previous versions. Do you have any idea what is _attachToFigPlayer…
Francis Reynolds
  • 476
  • 6
  • 18
13
votes
4 answers

(XCode 7 + iOS 9 + iPhone 4s/iPhone5 only) issue: "malloc: *** mach_vm_map(size=1048576) failed (error code=3)"

I know the issue is related to memory allocations, but I get it in only iOS 9, XCode 7. In XCode 6.4, iOS 8.4, it works just perfect, no issue at all at any ways. In iOS 9, XCode 7, it just crashes very frequently giving this error. malloc: ***…
Sunil Chauhan
  • 2,074
  • 1
  • 15
  • 33
10
votes
2 answers

iOS 8.4 MPMediaPickerController bug filtering by podcast

Prior to iOS 8.4, this code was allowing me to select a podcast from my phone: MPMediaPickerController *picker = [[MPMediaPickerController alloc] initWithMediaTypes: MPMediaTypePodcast]; With the latest OS though, the same code now pulls up an empty…
Oren
  • 5,055
  • 3
  • 34
  • 52
8
votes
3 answers

Xcode 6.3 not running iOS 8.4 - update to 6.4 fails

I have upgraded my iOS to 8.4, then I tried to run Xcode 6.3, it asks it can't mount the device since it's running 8.4 version (".. running a version of iOS that is not supported by this version of Xcode.") When I try to upgrade Xcode to 6.4 -…
Yuvals
  • 3,094
  • 5
  • 32
  • 60
7
votes
5 answers

UIActivityViewController share only text

I want to share just simple text using UIActivityViewController I am using swift, with xcode 6.3 The code is very simple, work great for photos, but not just text, I don't want to include any web URL with the objectsToShare, just clean text Here is…
user3728728
  • 885
  • 2
  • 11
  • 14
6
votes
1 answer

iOS 8.4 MPNowPlayingInfoCenter skip/prev disappeared

I'm working on a music playing app and in previous iOS versions the media player would show the play/pause as well as the skip and prev buttons. Now, with the 8.4 update, all that is shown is the play/pause. I'm updating the MPNowPlayingInfoCenter…
Jon E
  • 191
  • 1
  • 8
4
votes
0 answers

Memory leak WKWebView iOS 8.4

WKWebview leaks memory on iOS 8.4. It can be detected using Instruments (Leaks). When we check the Stack Trace, it points towards the initialisation of WKWebView. webView = [[WKWebView alloc] initWithFrame:_displayView.frame]; If we drill down, we…
4
votes
2 answers

'NSInvalidArgumentException', reason: '*** setObjectForKey: object cannot be nil (key: device_uid)'

I have an error when trying to run the application on my iPhone. I don't understand why I have a nil error in this case Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: ' setObjectForKey: object cannot be nil (key:…
Siberian Scout
  • 45
  • 1
  • 1
  • 5
4
votes
2 answers

Sigabart error in linphone lib for iPhone 4s (8.4.1)

I have use linphone lib in on of my project. its working fine in my devices. but in client's iphone 4s with version 8.4.1 it is keep get crashing... I found this crash log after symbolization 0 libsystem_kernel.dylib vm_read_overwrite (in…
Wolverine
  • 4,264
  • 1
  • 27
  • 49
4
votes
0 answers

MPMediaPickerController and iOS 8.4

From iOS 8.4 i can't get assetURL from MPMediaItem (nil for songs from Apple Music), which are sent to me by MPMediaPickerController. How can I hide (songs also iTunes Store) in MPMediaPickerController or get assetURL for them. P.S. I assume, that I…
4
votes
1 answer

NSUInteger and NSInteger bridging to Swift

With Swift 1.2 (yes, I've not switched over to Xcode 7, which is causing me grief), I have the following table view delegate method: func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return…
Chris Prince
  • 7,288
  • 2
  • 48
  • 66
1
2 3 4 5 6