// starting my code </p>
<pre><code>int col=10;
UIButton*mbybutton = [UIButton buttonWithType:UIButtonTypeCustom];
[mbybutton setTitle:@"Click Here" forState:UIControlStateNormal];
//-------------------
[self performSelector:@selector(fullscreen:)
withObject:[NSNumber numberWithInt:col]
afterDelay:0.2];
//----------------------------
-(void) displayvalue:(id)iid{
int c=[iid intValue];
printf("\n\n ======= %d========",c);
}
// end of code
в этом коде моя проблема
эти коды заменяют
afterDelay: 0.2 от forControlEvents: UIControlEventTouchUpInside (на четной кнопке)
и получить значение col в методе displayvalue, когда оно touchupinside
Пожалуйста, исправьте эти ошибки ..