i' m using InAppSettingsKit on my project. i customized IASKAppSettingsViewController But i don't customize IASKSpecifierValuesViewController.
my IASKAppSettingsViewController Custom Class;
import UIKit
class SettingsViewController: IASKAppSettingsViewController {
override func viewDidLoad() {
super.viewDidLoad()
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = super.tableView(tableView, cellForRowAt: indexPath)
cell.backgroundColor = .clear
cell.textLabel?.textColor = .white
cell.detailTextLabel?.textColor = .gray
cell.selectionStyle = .none
return cell
}
}
how do i call the Custom IASKSpecifierValuesViewController class? Note: i'm using storyboard. I'm open in without storyboard solutions. Thank you guys...
Okey, i found a solution.
i'm override to didSlectRowAtIndexPath method.
Detail view source code: