Swift dilini biraz almaya çalışıyorum ve aşağıdaki Objective-C'yi Swift'e nasıl dönüştüreceğimizi merak ediyorum:
- (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
}
}
Daha spesifik isKindOfClass
olarak yeni sözdiziminde nasıl kullanılacağını bilmem gerekiyor .
override func touchesBegan(touches: NSSet, withEvent event: UIEvent) {
???
if ??? {
// your touch was in a uipickerview ...
}
}