Skip to content
This repository has been archived by the owner on May 8, 2020. It is now read-only.

Commit

Permalink
Add static library project
Browse files Browse the repository at this point in the history
  • Loading branch information
danielctull committed Jun 14, 2012
1 parent a6e40ca commit 0aa6eca
Show file tree
Hide file tree
Showing 47 changed files with 656 additions and 0 deletions.
559 changes: 559 additions & 0 deletions DCTUIKit.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
File renamed without changes.
19 changes: 19 additions & 0 deletions DCTUIKit.h → DCTUIKit/DCTUIKit.h
Expand Up @@ -37,3 +37,22 @@
#define dctuikit dctuikit_2_0_2 #define dctuikit dctuikit_2_0_2


#endif #endif

#import <DCTUIKit/DCTViewController.h>
#import <DCTUIKit/DCTTableViewController.h>
#import <DCTUIKit/UIAlertView+DCTErrorHandling.h>
#import <DCTUIKit/UIColor+DCTComponents.h>
#import <DCTUIKit/UIColor+DCTHex.h>
#import <DCTUIKit/UIDevice+DCTFeatureCheck.h>
#import <DCTUIKit/UIDevice+DCTSystemVersion.h>
#import <DCTUIKit/UINib+DCTExtensions.h>
#import <DCTUIKit/UIResponder+DCTNextResponderExtensions.h>
#import <DCTUIKit/UITableViewCell+DCTExtensions.h>
#import <DCTUIKit/UIView+DCTAnimation.h>
#import <DCTUIKit/UIView+DCTFirstResponder.h>
#import <DCTUIKit/UIView+DCTLogging.h>
#import <DCTUIKit/UIView+DCTSubviewExtensions.h>
#import <DCTUIKit/UIWindow+DCTFirstResponder.h>
#import <DCTUIKit/UIImageView+DCTImageSizing.h>
#import <DCTUIKit/UIColor+DCTMixing.h>
#import <DCTUIKit/UITableView+DCTExtras.h>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Expand Up @@ -34,6 +34,8 @@
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */


#import <UIKit/UIKit.h>

@interface UIViewController (DCTViewController) @interface UIViewController (DCTViewController)


- (void)dct_sharedInit; - (void)dct_sharedInit;
Expand Down
File renamed without changes.
File renamed without changes.
22 changes: 22 additions & 0 deletions DCTUIKitTests/DCTUIKitTests-Info.plist
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>uk.co.danieltull.${PRODUCT_NAME:rfc1034identifier}</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
13 changes: 13 additions & 0 deletions DCTUIKitTests/DCTUIKitTests.h
@@ -0,0 +1,13 @@
//
// DCTUIKitTests.h
// DCTUIKitTests
//
// Created by Daniel Tull on 14.06.2012.
// Copyright (c) 2012 Daniel Tull. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>

@interface DCTUIKitTests : SenTestCase

@end
32 changes: 32 additions & 0 deletions DCTUIKitTests/DCTUIKitTests.m
@@ -0,0 +1,32 @@
//
// DCTUIKitTests.m
// DCTUIKitTests
//
// Created by Daniel Tull on 14.06.2012.
// Copyright (c) 2012 Daniel Tull. All rights reserved.
//

#import "DCTUIKitTests.h"

@implementation DCTUIKitTests

- (void)setUp
{
[super setUp];

// Set-up code here.
}

- (void)tearDown
{
// Tear-down code here.

[super tearDown];
}

- (void)testExample
{
STFail(@"Unit tests are not implemented yet in DCTUIKitTests");
}

@end
2 changes: 2 additions & 0 deletions DCTUIKitTests/en.lproj/InfoPlist.strings
@@ -0,0 +1,2 @@
/* Localized versions of Info.plist keys */

0 comments on commit 0aa6eca

Please sign in to comment.