আমি কিছুটা সুইফট ল্যাং বাছাই করার চেষ্টা করছি এবং আমি কীভাবে নীচের উদ্দেশ্য-সিটিকে সুইফটে রূপান্তর করব তা ভাবছি:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
[super touchesBegan:touches withEvent:event];
UITouch *touch = [touches anyObject];
if ([touch.view isKindOfClass: UIPickerView.class]) {
//your touch was in a uipickerview ... do whatever you have to do
}
}
আরও বিশেষভাবে আমার isKindOfClass
নতুন সিনট্যাক্সে কীভাবে ব্যবহার করবেন তা জানতে হবে ।
override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
???
if ??? {
// your touch was in a uipickerview ...
}
}