Reorganize project to use a designated subdirectory for core source files and strings. Also use a bundle for strings, to facilitate easy drag-n-drop use with existing projects.

This commit is contained in:
Adam Ernst
2012-03-07 19:44:01 -05:00
parent 906b14d355
commit 27b9ef7b7f
21 changed files with 31 additions and 2023 deletions

View File

@@ -0,0 +1,23 @@
//
// SORelativeDateTransformerTester
//
// Created by StdOrbit on 12/6/10.
// Copyright 2010 Standard Orbit Software, LLC. All rights reserved.
//
#import <UIKit/UIKit.h>
@class SORelativeDateTransformer;
@interface TesterViewController : UIViewController
{
IBOutlet UILabel *relativeDateLabel;
IBOutlet UIDatePicker *datePicker;
SORelativeDateTransformer *relativeDateTransformer;
}
- (IBAction) datePickerChangedValue:(id)sender;
@end