- UserDefaultsExplorer plugin.
- Userdefaults can edit by xml format
- Swift 5.x
- iOS 11.0
- Mac OS 10.15
- Implementing UserDefaultsExplorerPlugin
import UIKit
import UserDefaultsExplorerPlugin
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
private let userDefaultsExplorerPlugin = UserDefaultsExplorerPlugin(userDefaults: UserDefaults.standard)
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
return true
}
}
- Start the application that implements UserDefaultsExplorerPlugin.
- Launch UserDefaultsExplorer.
- Allow network with each device by alert.
- Once the network is connected, tap the sync button for UserDefaultsExplorer.
use_frameworks!
pod 'UserDefaultsExplorerPlugin'
import PackageDescription
let package = Package(
[...]
dependencies: [
.package(url: "https://github.com/t-osawa-009/UserDefaultsExplorerPlugin.git", from: "0.0.1"),
]
)
There's still a lot of work to do here. We would love to see you involved. You can find all the details on how to get started in the Contributing Guide.
UserDefaultsExplorer is released under the MIT license. See LICENSE for details.