Base64Decoder/Base64DecoderAppDelegate.m
2010-06-29 11:47:31 +02:00

26 lines
676 B
Objective-C

//
// Base64DecoderAppDelegate.m
// Base64Decoder
//
// Created by Jeena on 29.06.10.
// Copyright 2010 Jeena Paradies. All rights reserved.
//
#import "Base64DecoderAppDelegate.h"
#import "NSData+Base64.h"
@implementation Base64DecoderAppDelegate
@synthesize window, input, output;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
// Insert code here to initialize your application
}
- (IBAction)decode:(id)sender {
NSData* data = [NSData dataFromBase64String:[input stringValue]];
NSString *string = [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];
[[[output textStorage] mutableString] appendString:string];
}
@end