Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t-osawa-009/userdefaultsexplorerplugin
UserDefaults Explorer Plugin
https://github.com/t-osawa-009/userdefaultsexplorerplugin
debug debugging ios macos swift userdefaults
Last synced: 8 days ago
JSON representation
UserDefaults Explorer Plugin
- Host: GitHub
- URL: https://github.com/t-osawa-009/userdefaultsexplorerplugin
- Owner: t-osawa-009
- License: mit
- Created: 2020-08-20T11:26:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-28T08:25:00.000Z (over 4 years ago)
- Last Synced: 2025-01-02T00:33:55.160Z (9 days ago)
- Topics: debug, debugging, ios, macos, swift, userdefaults
- Language: Swift
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# UserDefaultsExplorerPlugin
- [UserDefaultsExplorer](https://github.com/t-osawa-009/UserDefaultsExplorer) plugin.
- Userdefaults can edit by xml format## Requirements
- Swift 5.x
- iOS 11.0
- Mac OS 10.15## Usage
1. Implementing UserDefaultsExplorerPlugin
```swift
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
}
}
```
2. Start the application that implements UserDefaultsExplorerPlugin.
2. Launch UserDefaultsExplorer.
2. Allow network with each device by alert.
2. Once the network is connected, tap the sync button for UserDefaultsExplorer.## Install
### Cocoa Pods
```
use_frameworks!
pod 'UserDefaultsExplorerPlugin'
```### Swift Package Manager
```
import PackageDescriptionlet package = Package(
[...]
dependencies: [
.package(url: "https://github.com/t-osawa-009/UserDefaultsExplorerPlugin.git", from: "0.0.1"),
]
)
```### CONTRIBUTING
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](https://github.com/t-osawa-009/UserDefaultsExplorerPlugin/blob/master/CONTRIBUTING.md).### License
UserDefaultsExplorer is released under the MIT license. See LICENSE for details.