Maybe I am missing something obvious, but it seems that the only way to change colours of the cells is to change the code in IASKAppSettingsViewController and/or IASKPSTextFieldSpecifierViewCell. Even that doesn't seem to work for everything.
I am using PSTextFieldSpecifier, PSToggleSwitchSpecifier and PSTitleValueSpecifier.
For PSTextFieldSpecifier, in
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
I added these two lines:
_textField.textColor = [UIColor whiteColor];
_textField.backgroundColor = [UIColor blackColor];
However, that only changed the colours of values, not of titles. How do I change colours of titles?