Tôi đang cố gắng chọn một chút Swift lang và tôi đang tự hỏi làm thế nào để chuyển đổi Objective-C sau đây thành 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
}
}
Cụ thể hơn tôi cần biết cách sử dụng isKindOfClass
trong cú pháp mới.
override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
???
if ??? {
// your touch was in a uipickerview ...
}
}