0

我在我的项目中使用 InAppSettingsKit。我自定义了 IASKAppSettingsViewController 但我没有自定义 IASKSpecifierValuesViewController。

我的 IASKAppSettingsViewController 自定义类;

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
  }
}

如何调用自定义 IASKSpecifierValuesViewController 类?注意:我正在使用故事板。我在没有故事板解决方案的情况下开放。感谢你们...

4

2 回答 2

1

好的,我找到了解决方案。

我覆盖了 didSlectRowAtIndexPath 方法。

import UIKit

class SettingsViewController: IASKAppSettingsViewController {

  override func viewDidLoad() {
    super.viewDidLoad()

    self.tableView.backgroundColor = .black

  }

  override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    let cell = super.tableView(tableView, cellForRowAt: indexPath)
    cell.backgroundColor = .clear
    cell.textLabel?.textColor = .white
    cell.selectionStyle = .none

    return cell
  }

  override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {

    //Creating specifier object
    let specifier = self.settingsReader.specifier(for: indexPath)
    //Creating a custom IASKSpecifierValuesViewController instance
    let targetViewController = SettingsDetail(style: .grouped)
    targetViewController.currentSpecifier = specifier
    targetViewController.settingsStore = settingsStore
    targetViewController.settingsReader = settingsReader
    self.navigationController?.pushViewController(targetViewController, animated: true)
  }
}

详细视图源代码:

import UIKit

class SettingsDetail: IASKSpecifierValuesViewController {

  override func viewDidLoad() {
    super.viewDidLoad()

    self.tableView.backgroundColor = .black
  }

  override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    let cell = super.tableView(tableView, cellForRowAt: indexPath)
    cell.backgroundColor = .clear
    cell.textLabel?.textColor = .white
    cell.selectionStyle = .none

    return cell
  }
}
于 2018-05-11T10:49:11.793 回答
0

老实说,目前还没有真正好的解决方案。你可以做什么:使用方法调配来覆盖该tableView:cellForRowAtIndexPath:方法。另一种方法是使用自定义视图,您IASKSpecifierValuesViewController在选择时推送子类。

或者您可以修改 IASK 以在IASKSettingsDelegate. 这可能是这样的:

- (UITableViewCell*)tableView:(UITableView*)tableView valueCellForSpecifier:(IASKSpecifier*)specifier index:(NSUInteger)index;

要实现这一点,必须将委托传播到IASKSpecifierValuesViewController执行回调的地方。

或者,作为更灵活的解决方案,我们可以允许使用自定义子类IASKSpecifierValuesViewController,可能通过IASKViewControllerClass在 settings.plist 中指定覆盖默认值IASKSpecifierValuesViewController

我欢迎这样的拉取请求!(我是 IASK 维护者。)

于 2018-05-11T10:22:22.670 回答