con Objective-C, ho usato il codice riportato di seguito per impostare/famiglia di caratteri cambio e le dimensioni di un selettore:cambiare carattere e la sua dimensione di un selettore a Swift
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view {
UILabel* tView = (UILabel*)view;
if (!tView){
tView = [[UILabel alloc] init];
// Setup label properties - frame, font, colors etc
tView.font = [UIFont fontWithName:@"Times New Roman" size:fontsize];;
}
tView.text = [_mysitedata findKeyForRow:row];
NSLog(@"C key:%@ row:%ld comp:%ld", tView.text, (long int)row, (long int)component);
return tView;
}
Tuttavia, Swift non accetta un gettato da UIView a UILabel e quindi non riesco a seguire questa strada, che sarebbe simile illustrato di seguito:
func pickerView(pickerView: UIPickerView, viewForRow row: Int, forComponent component: Int, reusingView view: UIView?) -> UIView {
let label = view as! UILabel
label.font = UIFont(name: "Times New Roman", size: 1.0)
label.text = pickerData[row]
return label
}
Il primo stament (lasciare l'etichetta ....) throuws un'eccezione in fase di esecuzione:
EXC-BAD ISTRUZIONI (codice = EXC_I386_INVOP, subcode = 0x0)
Questo link [link] http://stackoverflow.com/questions/27455345/uipickerview-wont-allow-changing-font- name-and-size-via-delegates-attributet [> link] risolve il problema. –