Post not yet marked as solved
Hello everyone!
I am wondering how to make one of those cards that sticks to the bottom of my view in SwiftUI. An example of this is in Apple Music where the now playing item and controls stay at the bottom throughout the navigation movements.
Thank you and hope you having a great WWDC!
I have a 3d camera app that I'm working on and I am wondering how to put the two videos side-by-side to save to Photos as one video using this delegate method: func fileOutput(_ output: AVCaptureFileOutput,
didFinishRecordingTo outputFileURL: URL,
from connections: [AVCaptureConnection],
error: Error?) {
Thank You!
Post not yet marked as solved
I have the same question as here.
https://developer.apple.com/forums/thread/110001
Thanks!
Hello,
I've recently added a widget extension to my app. But I've been having trouble sharing data between the two using UserDefaults.
Code
Shared Code
var AppGroup: String {
"group.someGroup"
}
Main App
UserDefaults(suiteName: AppGroup)!.setValue(data, forKey: "TimeLine")
// sets the value for main app.
Widget Extension
let data = UserDefaults(suiteName: AppGroup)!.data(forKey: "TimeLine")
// can't get the value in extension.
App groups are turned on in both targets, but the data is not shared.
Any ideas as to why this is happening would be appreciated.
Thank you.
Hello,
I'm wondering if the content of the MediaPlayer framework, songs and music videos, counts as third-party content for the app review process.
Thank you!