ฉันพยายามรับ Swift lang และฉันสงสัยว่าจะแปลง Objective-C ต่อไปนี้เป็น Swift ได้อย่างไร:
- (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 ...
}
}