Voglio usare addTarget: azione su UITextView come su (UITextField o UIButton).Quali azioni addTarget possiamo assumere su UITextView?
Voglio chiamare un metodo su UITextView.
si prega di dare qualche possibile soluzione ...
Grazie ...
UITextView *TXT_First_Tag = [[UITextView alloc] initWithFrame:CGRectMake(5, textPosY, 350, 65)];
TXT_First_Tag.backgroundColor = [UIColor whiteColor];
TXT_First_Tag.font = [UIFont fontWithName:@"Arial-BoldMT" size:30.0];
TXT_First_Tag.editable =YES;
TXT_First_Tag.tag = i;
TXT_First_Tag.textColor = [UIColor blackColor];
[TXT_First_Tag addTarget:self action:@selector(C6Loop) forControlEvents:UIControlEventEditingDidEnd]; // This Line I want to use, it's working fine on textfield...
[scrollview addSubview:TXT_First_Tag];
So che questa domanda è vecchio, ma ho pensato di sottolineare il fatto che i 'addTarget: AZIONE: forControlEvents:' metodo è ereditata ' UITextField' e 'UIButton' da' UIControl'. 'UITextView' non eredita da' UIControl'. Quindi la risposta alla domanda nel titolo non è nessuna. –