-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathMyController.m
41 lines (32 loc) · 988 Bytes
/
MyController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//
// MyController.m
// EmbeddedMacRuby
//
// Created by Laurent Sansonetti on 10/7/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import "MyController.h"
#import <MacRuby/MacRuby.h>
@implementation MyController
- (void)awakeFromNib
{
NSFont *niceFont;
niceFont = [NSFont fontWithName:@"Monaco" size:14.0];
[expressionTextView setFont:niceFont];
[resultTextView setFont:niceFont];
[expressionTextView setString:@"(0..42).to_a"];
}
- (IBAction)evaluate:(id)sender
{
@try {
id object;
object = [[MacRuby sharedRuntime] evaluateString:[expressionTextView string]];
[resultTextView setString:[object description]];
}
@catch (NSException *exception) {
NSString *string = [NSString stringWithFormat:@"%@: %@\n%@", [exception name], [exception reason],
[[[exception userInfo] objectForKey:@"backtrace"] description]];
[resultTextView setString:string];
}
}
@end