2
-objc를 AppleScript로합니다 여러 인수를 사용하여 메서드를 호출하는 방법을 알아 내면 다음과 같이 하나의 인수만으로 메서드를 호출해도 아무런 문제가 없습니다. -호출 여러 인수 내가하는 방법으로 AppleScript로-objc 스크립트가
@interface NSObject (ASHandlers)
- (void)say:(NSString *)phrase;
@end
@implementation AppDelegate
@synthesize window, sayTextField;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification{
scriptFile = NSClassFromString(@"Test");
if (!scriptFile){
// Handle errors here
return;
}
}
- (IBAction)say:(id)sender{
NSString *phrase = [sayTextField stringValue];
[scriptFile say:phrase];
}
누군가 도와 줄 수 있습니까?
감사합니다. Andy. 그것이 당신이 찾고 있던 무슨 경우에 따라서 여러 인자를 가진 IBAction를 가질 수 없습니다
-(void)action;
-(void)actionWithSender:(id)sender;
-(void)actionWithSender:(id)sender event:(UIEvent*)event;
:
고맙습니다. – Andy