मैं स्विफ्ट लैंग का एक सा लेने की कोशिश कर रहा हूं और सोच रहा हूं कि निम्नलिखित ऑब्जेक्ट-सी को स्विफ्ट में कैसे बदला जाए:
- (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 ...
}
}