Post

Replies

Boosts

Views

Activity

Reply to Crash in iOS18
I've the same problem, but as far I can see I don't dequeue twice. Can someone help me out here? func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "NieuwsCollectionViewControllerCell", for: indexPath) as! NieuwsCollectionViewCell let feedRow = MyNewsLoader.shared.returnNews()[indexPath.row] let feedTitle = feedRow.title let feedDescription = feedRow.description?.trimHTMLTags() let feedLink = feedRow.link cell.feedTitle?.text = feedTitle cell.feedDescription?.text = feedDescription return cell } What going wrong here?
Sep ’24
Reply to MPRemoteCommandCenter - Remote controls on lock screen does not show up
You need to set the buttons on or off: commandCenter.skipBackwardCommand.isEnabled = false commandCenter.skipForwardCommand.isEnabled = false commandCenter.playCommand.isEnabled = true commandCenter.pauseCommand.isEnabled = true commandCenter.previousTrackCommand.isEnabled = true commandCenter.nextTrackCommand.isEnabled = true commandCenter.stopCommand.isEnabled = true I hope this example helps you out ;)
Jul ’22
Reply to app rejected with "Guideline 5.2.3 - Legal"
Did you solve the issue? I had the same problem in my radio-app. I added a customer written statement in AppStore Connect: Hello iTunes Connect Team,  This is to state that [Customer Name] has authorized [Your Name] from [Your Company Name] for its Mobile Application development and deployment.  [Your Name] from [Your Company Name] have all the rights to publish the app under the name of [Product Name].  Our registration at Buma/Stemra is: [number] and at Sena is: [number]  Please treat this document as a proof which indicates our rights.  Thank you for your anticipation.  Name: [Customer Name] Autograph: ***
Jul ’22
Reply to AirPlay from iOS to tvOS shows black screen
Sorry, didn't see your respons. It works oke now. I think it was a bug in iOS. In the meantime I added some properties to the nowPlayingInfo: audioInfo.nowPlayingInfo = [MPMediaItemPropertyTitle: artist!, MPMediaItemPropertyArtist: title!, MPMediaItemPropertyAlbumTitle: radioName, MPMediaItemPropertyMediaType: MPNowPlayingInfoMediaType.audio.rawValue, MPMediaItemPropertyAssetURL: radioURL!, MPMediaItemPropertyArtwork: radioArtwork, MPNowPlayingInfoPropertyIsLiveStream: true, MPNowPlayingInfoPropertyPlaybackRate: 1.0]
Jul ’22