42 lines
994 B
Swift
42 lines
994 B
Swift
//
|
|
// Options.swift
|
|
// flutter_inappbrowser
|
|
//
|
|
// Created by Lorenzo on 26/09/18.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
@objcMembers
|
|
public class Options: NSObject {
|
|
|
|
override init(){
|
|
super.init()
|
|
}
|
|
|
|
func parse(options: [String: Any]) -> Options {
|
|
for (key, value) in options {
|
|
if self.responds(to: Selector(key)) {
|
|
self.setValue(value, forKey: key)
|
|
}
|
|
}
|
|
return self
|
|
}
|
|
|
|
func getHashMap() -> [String: Any] {
|
|
var options: [String: Any] = [:]
|
|
var counts = UInt32();
|
|
let properties = class_copyPropertyList(object_getClass(self), &counts);
|
|
for i in 0..<counts {
|
|
let property = properties?.advanced(by: Int(i)).pointee;
|
|
|
|
let cName = property_getName(property!);
|
|
let name = String(cString: cName)
|
|
|
|
options[name] = self.value(forKey: name)
|
|
}
|
|
free(properties)
|
|
return options
|
|
}
|
|
}
|