forked from SwiftKickMobile/TLIndexPathTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert TLIndexPathTools target into a Cocoa Touch framework
- Loading branch information
Timothy Moose
committed
Apr 27, 2015
1 parent
8731710
commit 745a5cf
Showing
15 changed files
with
551 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
// Copyright (c) 2013 [email protected]. All rights reserved. | ||
// | ||
|
||
#import <TLIndexPathTools/TLTableViewController.h> | ||
#import <TLIndexPathTools/TLIndexPathTools.h> | ||
|
||
@interface NoResultsTableViewController : TLTableViewController | ||
@property (strong, nonatomic) IBOutlet UIButton *hideRowsButton; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "TLIndexPathTools" | ||
s.version = "0.3.14" | ||
s.version = "0.3.15" | ||
s.summary = "TLIndexPathTools is a small set of classes that can greatly simplify your table and collection views." | ||
s.description = <<-DESC | ||
TLIndexPathTools is a small set of classes that can greatly simplify your table and collection views. Here are some of the awesome things TLIndexPathTools does: | ||
|
@@ -11,14 +11,14 @@ Pod::Spec.new do |s| | |
* Provide a simpler alternative to Core Data NSFetchedResultsController | ||
* Provide base table view and collection view classes with advanced features | ||
0.3.14 | ||
* Share TLIndexPathTools scheme for Carthage | ||
0.3.15 | ||
* Convert TLIndexPathTools target into a Cocoa Touch framework | ||
DESC | ||
s.homepage = "http://tlindexpathtools.com" | ||
s.license = { :type => "MIT" } | ||
s.author = { "wtmoose" => "[email protected]" } | ||
s.source = { :git => "https://github.com/wtmoose/TLIndexPathTools.git", :tag => '0.3.14' } | ||
s.source = { :git => "https://github.com/wtmoose/TLIndexPathTools.git", :tag => '0.3.15' } | ||
s.platform = :ios, '6.0' | ||
s.ios.deployment_target = '6.0' | ||
s.source_files = 'TLIndexPathTools/**/*.{h,m}' | ||
|
Oops, something went wrong.