Skip to content

Commit

Permalink
first attempt of making DTTableViewManager carthageable
Browse files Browse the repository at this point in the history
  • Loading branch information
DenTelezhkin committed Apr 27, 2015
1 parent f6210aa commit 205e5d7
Show file tree
Hide file tree
Showing 9 changed files with 239 additions and 5 deletions.
1 change: 1 addition & 0 deletions DTTableViewManager/DTTableViewCell.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

@import UIKit;
#import <DTModelStorage/DTModelTransfer.h>

/**
Expand Down
2 changes: 1 addition & 1 deletion DTTableViewManager/DTTableViewCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
// THE SOFTWARE.

#import "DTTableViewCell.h"
#import "DTRuntimeHelper.h"
#import <DTModelStorage/DTRuntimeHelper.h>

@implementation DTTableViewCell

Expand Down
3 changes: 2 additions & 1 deletion DTTableViewManager/DTTableViewFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

#import <Foundation/Foundation.h>
@import Foundation;
@import UIKit;

#if __has_feature(nullability) // Xcode 6.3+
#pragma clang assume_nonnull begin
Expand Down
4 changes: 2 additions & 2 deletions DTTableViewManager/DTTableViewFactory.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
// THE SOFTWARE.

#import "DTTableViewFactory.h"
#import "DTModelTransfer.h"
#import <DTModelStorage/DTModelStorage.h>
#import "UIView+DTLoading.h"
#import "DTRuntimeHelper.h"
#import <DTModelStorage/DTRuntimeHelper.h>

@interface DTTableViewFactory ()

Expand Down
2 changes: 1 addition & 1 deletion DTTableViewManager/UIView+DTLoading.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
// THE SOFTWARE.

#import "UIView+DTLoading.h"
#import "DTRuntimeHelper.h"
#import <DTModelStorage/DTRuntimeHelper.h>

@implementation UIView (DTLoading)

Expand Down
1 change: 1 addition & 0 deletions Example/Cartfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github "DenHeadless/DTModelStorage"
1 change: 1 addition & 0 deletions Example/Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github "DenHeadless/DTModelStorage" "1.2.1"
204 changes: 204 additions & 0 deletions Example/DTTableViewManager.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions Example/DTTableViewManager/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?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>com.mlsdev.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>

0 comments on commit 205e5d7

Please sign in to comment.