添加DZNEmptyDataSet
This commit is contained in:
1
Podfile
1
Podfile
@@ -10,6 +10,7 @@ target 'CustomKeyboard' do
|
||||
pod 'Masonry', '1.1.0'
|
||||
pod 'MBProgressHUD', '1.2.0'
|
||||
pod 'MJExtension', '3.4.2'
|
||||
pod 'DZNEmptyDataSet', '1.8.1'
|
||||
end
|
||||
|
||||
target 'keyBoard' do
|
||||
|
||||
@@ -15,6 +15,7 @@ PODS:
|
||||
- AFNetworking/UIKit (4.0.1):
|
||||
- AFNetworking/NSURLSession
|
||||
- Bugly (2.6.1)
|
||||
- DZNEmptyDataSet (1.8.1)
|
||||
- LookinServer (1.2.8):
|
||||
- LookinServer/Core (= 1.2.8)
|
||||
- LookinServer/Core (1.2.8)
|
||||
@@ -29,6 +30,7 @@ PODS:
|
||||
DEPENDENCIES:
|
||||
- AFNetworking (= 4.0.1)
|
||||
- Bugly (= 2.6.1)
|
||||
- DZNEmptyDataSet (= 1.8.1)
|
||||
- LookinServer
|
||||
- Masonry (= 1.1.0)
|
||||
- MBProgressHUD (= 1.2.0)
|
||||
@@ -40,6 +42,7 @@ SPEC REPOS:
|
||||
https://github.com/CocoaPods/Specs.git:
|
||||
- AFNetworking
|
||||
- Bugly
|
||||
- DZNEmptyDataSet
|
||||
- LookinServer
|
||||
- Masonry
|
||||
- MBProgressHUD
|
||||
@@ -50,6 +53,7 @@ SPEC REPOS:
|
||||
SPEC CHECKSUMS:
|
||||
AFNetworking: 3bd23d814e976cd148d7d44c3ab78017b744cd58
|
||||
Bugly: 217ac2ce5f0f2626d43dbaa4f70764c953a26a31
|
||||
DZNEmptyDataSet: 9525833b9e68ac21c30253e1d3d7076cc828eaa7
|
||||
LookinServer: 1b2b61c6402ae29fa22182d48f5cd067b4e99e80
|
||||
Masonry: 678fab65091a9290e40e2832a55e7ab731aad201
|
||||
MBProgressHUD: 3ee5efcc380f6a79a7cc9b363dd669c5e1ae7406
|
||||
@@ -57,6 +61,6 @@ SPEC CHECKSUMS:
|
||||
MJRefresh: ff9e531227924c84ce459338414550a05d2aea78
|
||||
SDWebImage: f29024626962457f3470184232766516dee8dfea
|
||||
|
||||
PODFILE CHECKSUM: c61e30c30e1b3bee64d09e23c2f83fc77e0f8ff5
|
||||
PODFILE CHECKSUM: 3619f65be1b908e009b5ab96b3d06d846883eac0
|
||||
|
||||
COCOAPODS: 1.16.2
|
||||
|
||||
9
Pods/DZNEmptyDataSet/LICENSE
generated
Normal file
9
Pods/DZNEmptyDataSet/LICENSE
generated
Normal file
@@ -0,0 +1,9 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
296
Pods/DZNEmptyDataSet/README.md
generated
Normal file
296
Pods/DZNEmptyDataSet/README.md
generated
Normal file
@@ -0,0 +1,296 @@
|
||||
DZNEmptyDataSet
|
||||
=================
|
||||
|
||||
[](http://cocoadocs.org/docsets/DZNEmptyDataSet/)
|
||||
[](https://github.com/Carthage/Carthage)
|
||||
[](http://opensource.org/licenses/MIT)
|
||||
|
||||
### Projects using this library
|
||||
|
||||
[Add your project to the list here](https://github.com/dzenbot/DZNEmptyDataSet/wiki/Projects-using-DZNEmptyDataSet) and provide a (320px wide) render of the result.
|
||||
|
||||
|
||||
### The Empty Data Set Pattern
|
||||
Also known as *[Empty State](http://emptystat.es/)* or *[Blank Slate](http://patternry.com/p=blank-slate/)*.
|
||||
|
||||
Most applications show lists of content (data sets), which many turn out to be empty at one point, specially for new users with blank accounts. Empty screens create confusion by not being clear about what's going on, if there is an error/bug or if the user is supposed to do something within your app to be able to consume the content.
|
||||
|
||||
Please read this very interesting article about [*Designing For The Empty States*](http://tympanus.net/codrops/2013/01/09/designing-for-the-empty-states/).
|
||||
|
||||

|
||||

|
||||
(*These are real life examples, available in the 'Applications' sample project*)
|
||||
|
||||
**[Empty Data Sets](http://pttrns.com/?did=1&scid=30)** are helpful for:
|
||||
* Avoiding white-screens and communicating to your users why the screen is empty.
|
||||
* Calling to action (particularly as an onboarding process).
|
||||
* Avoiding other interruptive mechanisms like showing error alerts.
|
||||
* Being consistent and improving the user experience.
|
||||
* Delivering a brand presence.
|
||||
|
||||
|
||||
### Features
|
||||
* Compatible with UITableView and UICollectionView. Also compatible with UISearchDisplayController and UIScrollView.
|
||||
* Gives multiple possibilities of layout and appearance, by showing an image and/or title label and/or description label and/or button.
|
||||
* Uses NSAttributedString for easier appearance customisation.
|
||||
* Uses auto-layout to automagically center the content to the tableview, with auto-rotation support. Also accepts custom vertical and horizontal alignment.
|
||||
* Background color customisation.
|
||||
* Allows tap gesture on the whole tableview rectangle (useful for resigning first responder or similar actions).
|
||||
* For more advanced customisation, it allows a custom view.
|
||||
* Compatible with Storyboard.
|
||||
* Compatible with iOS 6 or later.
|
||||
* Compatible with iPhone and iPad.
|
||||
* **App Store ready**
|
||||
|
||||
This library has been designed in a way where you won't need to extend UITableView or UICollectionView class. It will still work when using UITableViewController or UICollectionViewController.
|
||||
By just conforming to DZNEmptyDataSetSource & DZNEmptyDataSetDelegate, you will be able to fully customize the content and appearance of the empty states for your application.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
Available in [CocoaPods](http://cocoapods.org/?q=DZNEmptyDataSet)
|
||||
```ruby
|
||||
pod 'DZNEmptyDataSet'
|
||||
```
|
||||
|
||||
To integrate DZNEmptyDataSet into your Xcode project using Carthage, specify it in your `Cartfile`:
|
||||
|
||||
```ruby
|
||||
github "dzenbot/DZNEmptyDataSet"
|
||||
```
|
||||
|
||||
|
||||
## How to use
|
||||
For complete documentation, [visit CocoaPods' auto-generated doc](http://cocoadocs.org/docsets/DZNEmptyDataSet/)
|
||||
|
||||
### Import
|
||||
```objc
|
||||
#import "UIScrollView+EmptyDataSet.h"
|
||||
```
|
||||
Unless you are importing as a framework, then do:
|
||||
```objc
|
||||
#import "<DZNEmptyDataSet/UIScrollView+EmptyDataSet.h>"
|
||||
```
|
||||
|
||||
### Protocol Conformance
|
||||
Conform to datasource and/or delegate.
|
||||
```objc
|
||||
@interface MainViewController : UITableViewController <DZNEmptyDataSetSource, DZNEmptyDataSetDelegate>
|
||||
|
||||
- (void)viewDidLoad
|
||||
{
|
||||
[super viewDidLoad];
|
||||
|
||||
self.tableView.emptyDataSetSource = self;
|
||||
self.tableView.emptyDataSetDelegate = self;
|
||||
|
||||
// A little trick for removing the cell separators
|
||||
self.tableView.tableFooterView = [UIView new];
|
||||
}
|
||||
```
|
||||
|
||||
### Data Source Implementation
|
||||
Return the content you want to show on the empty state, and take advantage of NSAttributedString features to customise the text appearance.
|
||||
|
||||
The image for the empty state:
|
||||
```objc
|
||||
- (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView
|
||||
{
|
||||
return [UIImage imageNamed:@"empty_placeholder"];
|
||||
}
|
||||
```
|
||||
|
||||
The image view animation
|
||||
```objc
|
||||
- (CAAnimation *)imageAnimationForEmptyDataSet:(UIScrollView *)scrollView
|
||||
{
|
||||
CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath: @"transform"];
|
||||
|
||||
animation.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity];
|
||||
animation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeRotation(M_PI_2, 0.0, 0.0, 1.0)];
|
||||
|
||||
animation.duration = 0.25;
|
||||
animation.cumulative = YES;
|
||||
animation.repeatCount = MAXFLOAT;
|
||||
|
||||
return animation;
|
||||
}
|
||||
```
|
||||
|
||||
The attributed string for the title of the empty state:
|
||||
```objc
|
||||
- (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView
|
||||
{
|
||||
NSString *text = @"Please Allow Photo Access";
|
||||
|
||||
NSDictionary *attributes = @{NSFontAttributeName: [UIFont boldSystemFontOfSize:18.0f],
|
||||
NSForegroundColorAttributeName: [UIColor darkGrayColor]};
|
||||
|
||||
return [[NSAttributedString alloc] initWithString:text attributes:attributes];
|
||||
}
|
||||
```
|
||||
|
||||
The attributed string for the description of the empty state:
|
||||
```objc
|
||||
- (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView
|
||||
{
|
||||
NSString *text = @"This allows you to share photos from your library and save photos to your camera roll.";
|
||||
|
||||
NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new];
|
||||
paragraph.lineBreakMode = NSLineBreakByWordWrapping;
|
||||
paragraph.alignment = NSTextAlignmentCenter;
|
||||
|
||||
NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0f],
|
||||
NSForegroundColorAttributeName: [UIColor lightGrayColor],
|
||||
NSParagraphStyleAttributeName: paragraph};
|
||||
|
||||
return [[NSAttributedString alloc] initWithString:text attributes:attributes];
|
||||
}
|
||||
```
|
||||
|
||||
The attributed string to be used for the specified button state:
|
||||
```objc
|
||||
- (NSAttributedString *)buttonTitleForEmptyDataSet:(UIScrollView *)scrollView forState:(UIControlState)state
|
||||
{
|
||||
NSDictionary *attributes = @{NSFontAttributeName: [UIFont boldSystemFontOfSize:17.0f]};
|
||||
|
||||
return [[NSAttributedString alloc] initWithString:@"Continue" attributes:attributes];
|
||||
}
|
||||
```
|
||||
|
||||
or the image to be used for the specified button state:
|
||||
```objc
|
||||
- (UIImage *)buttonImageForEmptyDataSet:(UIScrollView *)scrollView forState:(UIControlState)state
|
||||
{
|
||||
return [UIImage imageNamed:@"button_image"];
|
||||
}
|
||||
```
|
||||
|
||||
The background color for the empty state:
|
||||
```objc
|
||||
- (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView
|
||||
{
|
||||
return [UIColor whiteColor];
|
||||
}
|
||||
```
|
||||
|
||||
If you need a more complex layout, you can return a custom view instead:
|
||||
```objc
|
||||
- (UIView *)customViewForEmptyDataSet:(UIScrollView *)scrollView
|
||||
{
|
||||
UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
|
||||
[activityView startAnimating];
|
||||
return activityView;
|
||||
}
|
||||
```
|
||||
|
||||
Additionally, you can also adjust the vertical alignment of the content view (ie: useful when there is tableHeaderView visible):
|
||||
```objc
|
||||
- (CGFloat)verticalOffsetForEmptyDataSet:(UIScrollView *)scrollView
|
||||
{
|
||||
return -self.tableView.tableHeaderView.frame.size.height/2.0f;
|
||||
}
|
||||
```
|
||||
|
||||
Finally, you can separate components from each other (default separation is 11 pts):
|
||||
```objc
|
||||
- (CGFloat)spaceHeightForEmptyDataSet:(UIScrollView *)scrollView
|
||||
{
|
||||
return 20.0f;
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
### Delegate Implementation
|
||||
Return the behaviours you would expect from the empty states, and receive the user events.
|
||||
|
||||
Asks to know if the empty state should be rendered and displayed (Default is YES) :
|
||||
```objc
|
||||
- (BOOL)emptyDataSetShouldDisplay:(UIScrollView *)scrollView
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
```
|
||||
|
||||
Asks for interaction permission (Default is YES) :
|
||||
```objc
|
||||
- (BOOL)emptyDataSetShouldAllowTouch:(UIScrollView *)scrollView
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
```
|
||||
|
||||
Asks for scrolling permission (Default is NO) :
|
||||
```objc
|
||||
- (BOOL)emptyDataSetShouldAllowScroll:(UIScrollView *)scrollView
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
```
|
||||
|
||||
Asks for image view animation permission (Default is NO) :
|
||||
```objc
|
||||
- (BOOL) emptyDataSetShouldAllowImageViewAnimate:(UIScrollView *)scrollView
|
||||
{
|
||||
return YES;
|
||||
}
|
||||
```
|
||||
|
||||
Notifies when the dataset view was tapped:
|
||||
```objc
|
||||
- (void)emptyDataSet:(UIScrollView *)scrollView didTapView:(UIView *)view
|
||||
{
|
||||
// Do something
|
||||
}
|
||||
```
|
||||
|
||||
Notifies when the data set call to action button was tapped:
|
||||
```objc
|
||||
- (void)emptyDataSet:(UIScrollView *)scrollView didTapButton:(UIButton *)button
|
||||
{
|
||||
// Do something
|
||||
}
|
||||
```
|
||||
|
||||
### Refresh layout
|
||||
If you need to refresh the empty state layout, simply call:
|
||||
|
||||
```objc
|
||||
[self.tableView reloadData];
|
||||
```
|
||||
or
|
||||
```objc
|
||||
[self.collectionView reloadData];
|
||||
```
|
||||
depending of which you are using.
|
||||
|
||||
### Force layout update
|
||||
You can also call `[self.tableView reloadEmptyDataSet]` to invalidate the current empty state layout and trigger a layout update, bypassing `-reloadData`. This might be useful if you have a lot of logic on your data source that you want to avoid calling, when not needed. `[self.scrollView reloadEmptyDataSet]` is the only way to refresh content when using with UIScrollView.
|
||||
|
||||
|
||||
## Sample projects
|
||||
|
||||
#### Applications
|
||||
This project replicates several popular application's empty states (~20) with their exact content and appearance, such as Airbnb, Dropbox, Facebook, Foursquare, and many others. See how easy and flexible it is to customize the appearance of your empty states. You can also use this project as a playground to test things.
|
||||
|
||||
#### Countries
|
||||
This project shows a list of the world countries loaded from CoreData. It uses NSFecthedResultController for filtering search. When searching and no content is matched, a simple empty state is shown. See how to interact between the UITableViewDataSource and the DZNEmptyDataSetSource protocols, while using a typical CoreData stack.
|
||||
|
||||
#### Colors
|
||||
This project is a simple example of how this library also works with UICollectionView and UISearchDisplayController, while using Storyboards.
|
||||
|
||||
|
||||
## Collaboration
|
||||
Feel free to collaborate with ideas, issues and/or pull requests.
|
||||
|
||||
|
||||
## License
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
280
Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h
generated
Normal file
280
Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h
generated
Normal file
@@ -0,0 +1,280 @@
|
||||
//
|
||||
// UIScrollView+EmptyDataSet.h
|
||||
// DZNEmptyDataSet
|
||||
// https://github.com/dzenbot/DZNEmptyDataSet
|
||||
//
|
||||
// Created by Ignacio Romero Zurbuchen on 6/20/14.
|
||||
// Copyright (c) 2016 DZN Labs. All rights reserved.
|
||||
// Licence: MIT-Licence
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@protocol DZNEmptyDataSetSource;
|
||||
@protocol DZNEmptyDataSetDelegate;
|
||||
|
||||
#define DZNEmptyDataSetDeprecated(instead) DEPRECATED_MSG_ATTRIBUTE(" Use " # instead " instead")
|
||||
|
||||
/**
|
||||
A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display.
|
||||
@discussion It will work automatically, by just conforming to DZNEmptyDataSetSource, and returning the data you want to show.
|
||||
*/
|
||||
@interface UIScrollView (EmptyDataSet)
|
||||
|
||||
/** The empty datasets data source. */
|
||||
@property (nonatomic, weak) IBOutlet id <DZNEmptyDataSetSource> emptyDataSetSource;
|
||||
/** The empty datasets delegate. */
|
||||
@property (nonatomic, weak) IBOutlet id <DZNEmptyDataSetDelegate> emptyDataSetDelegate;
|
||||
/** YES if any empty dataset is visible. */
|
||||
@property (nonatomic, readonly, getter = isEmptyDataSetVisible) BOOL emptyDataSetVisible;
|
||||
|
||||
/**
|
||||
Reloads the empty dataset content receiver.
|
||||
@discussion Call this method to force all the data to refresh. Calling -reloadData is similar, but this forces only the empty dataset to reload, not the entire table view or collection view.
|
||||
*/
|
||||
- (void)reloadEmptyDataSet;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
The object that acts as the data source of the empty datasets.
|
||||
@discussion The data source must adopt the DZNEmptyDataSetSource protocol. The data source is not retained. All data source methods are optional.
|
||||
*/
|
||||
@protocol DZNEmptyDataSetSource <NSObject>
|
||||
@optional
|
||||
|
||||
/**
|
||||
Asks the data source for the title of the dataset.
|
||||
The dataset uses a fixed font style by default, if no attributes are set. If you want a different font style, return a attributed string.
|
||||
|
||||
@param scrollView A scrollView subclass informing the data source.
|
||||
@return An attributed string for the dataset title, combining font, text color, text pararaph style, etc.
|
||||
*/
|
||||
- (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Asks the data source for the description of the dataset.
|
||||
The dataset uses a fixed font style by default, if no attributes are set. If you want a different font style, return a attributed string.
|
||||
|
||||
@param scrollView A scrollView subclass informing the data source.
|
||||
@return An attributed string for the dataset description text, combining font, text color, text pararaph style, etc.
|
||||
*/
|
||||
- (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Asks the data source for the image of the dataset.
|
||||
|
||||
@param scrollView A scrollView subclass informing the data source.
|
||||
@return An image for the dataset.
|
||||
*/
|
||||
- (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView;
|
||||
|
||||
|
||||
/**
|
||||
Asks the data source for a tint color of the image dataset. Default is nil.
|
||||
|
||||
@param scrollView A scrollView subclass object informing the data source.
|
||||
@return A color to tint the image of the dataset.
|
||||
*/
|
||||
- (UIColor *)imageTintColorForEmptyDataSet:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
* Asks the data source for the image animation of the dataset.
|
||||
*
|
||||
* @param scrollView A scrollView subclass object informing the delegate.
|
||||
*
|
||||
* @return image animation
|
||||
*/
|
||||
- (CAAnimation *) imageAnimationForEmptyDataSet:(UIScrollView *) scrollView;
|
||||
|
||||
/**
|
||||
Asks the data source for the title to be used for the specified button state.
|
||||
The dataset uses a fixed font style by default, if no attributes are set. If you want a different font style, return a attributed string.
|
||||
|
||||
@param scrollView A scrollView subclass object informing the data source.
|
||||
@param state The state that uses the specified title. The possible values are described in UIControlState.
|
||||
@return An attributed string for the dataset button title, combining font, text color, text pararaph style, etc.
|
||||
*/
|
||||
- (NSAttributedString *)buttonTitleForEmptyDataSet:(UIScrollView *)scrollView forState:(UIControlState)state;
|
||||
|
||||
/**
|
||||
Asks the data source for the image to be used for the specified button state.
|
||||
This method will override buttonTitleForEmptyDataSet:forState: and present the image only without any text.
|
||||
|
||||
@param scrollView A scrollView subclass object informing the data source.
|
||||
@param state The state that uses the specified title. The possible values are described in UIControlState.
|
||||
@return An image for the dataset button imageview.
|
||||
*/
|
||||
- (UIImage *)buttonImageForEmptyDataSet:(UIScrollView *)scrollView forState:(UIControlState)state;
|
||||
|
||||
/**
|
||||
Asks the data source for a background image to be used for the specified button state.
|
||||
There is no default style for this call.
|
||||
|
||||
@param scrollView A scrollView subclass informing the data source.
|
||||
@param state The state that uses the specified image. The values are described in UIControlState.
|
||||
@return An attributed string for the dataset button title, combining font, text color, text pararaph style, etc.
|
||||
*/
|
||||
- (UIImage *)buttonBackgroundImageForEmptyDataSet:(UIScrollView *)scrollView forState:(UIControlState)state;
|
||||
|
||||
/**
|
||||
Asks the data source for the background color of the dataset. Default is clear color.
|
||||
|
||||
@param scrollView A scrollView subclass object informing the data source.
|
||||
@return A color to be applied to the dataset background view.
|
||||
*/
|
||||
- (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Asks the data source for a custom view to be displayed instead of the default views such as labels, imageview and button. Default is nil.
|
||||
Use this method to show an activity view indicator for loading feedback, or for complete custom empty data set.
|
||||
Returning a custom view will ignore -offsetForEmptyDataSet and -spaceHeightForEmptyDataSet configurations.
|
||||
|
||||
@param scrollView A scrollView subclass object informing the delegate.
|
||||
@return The custom view.
|
||||
*/
|
||||
- (UIView *)customViewForEmptyDataSet:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Asks the data source for a offset for vertical and horizontal alignment of the content. Default is CGPointZero.
|
||||
|
||||
@param scrollView A scrollView subclass object informing the delegate.
|
||||
@return The offset for vertical and horizontal alignment.
|
||||
*/
|
||||
- (CGPoint)offsetForEmptyDataSet:(UIScrollView *)scrollView DZNEmptyDataSetDeprecated(-verticalOffsetForEmptyDataSet:);
|
||||
- (CGFloat)verticalOffsetForEmptyDataSet:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Asks the data source for a vertical space between elements. Default is 11 pts.
|
||||
|
||||
@param scrollView A scrollView subclass object informing the delegate.
|
||||
@return The space height between elements.
|
||||
*/
|
||||
- (CGFloat)spaceHeightForEmptyDataSet:(UIScrollView *)scrollView;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
The object that acts as the delegate of the empty datasets.
|
||||
@discussion The delegate can adopt the DZNEmptyDataSetDelegate protocol. The delegate is not retained. All delegate methods are optional.
|
||||
|
||||
@discussion All delegate methods are optional. Use this delegate for receiving action callbacks.
|
||||
*/
|
||||
@protocol DZNEmptyDataSetDelegate <NSObject>
|
||||
@optional
|
||||
|
||||
/**
|
||||
Asks the delegate to know if the empty dataset should fade in when displayed. Default is YES.
|
||||
|
||||
@param scrollView A scrollView subclass object informing the delegate.
|
||||
@return YES if the empty dataset should fade in.
|
||||
*/
|
||||
- (BOOL)emptyDataSetShouldFadeIn:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Asks the delegate to know if the empty dataset should still be displayed when the amount of items is more than 0. Default is NO
|
||||
|
||||
@param scrollView A scrollView subclass object informing the delegate.
|
||||
@return YES if empty dataset should be forced to display
|
||||
*/
|
||||
- (BOOL)emptyDataSetShouldBeForcedToDisplay:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Asks the delegate to know if the empty dataset should be rendered and displayed. Default is YES.
|
||||
|
||||
@param scrollView A scrollView subclass object informing the delegate.
|
||||
@return YES if the empty dataset should show.
|
||||
*/
|
||||
- (BOOL)emptyDataSetShouldDisplay:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Asks the delegate for touch permission. Default is YES.
|
||||
|
||||
@param scrollView A scrollView subclass object informing the delegate.
|
||||
@return YES if the empty dataset receives touch gestures.
|
||||
*/
|
||||
- (BOOL)emptyDataSetShouldAllowTouch:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Asks the delegate for scroll permission. Default is NO.
|
||||
|
||||
@param scrollView A scrollView subclass object informing the delegate.
|
||||
@return YES if the empty dataset is allowed to be scrollable.
|
||||
*/
|
||||
- (BOOL)emptyDataSetShouldAllowScroll:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Asks the delegate for image view animation permission. Default is NO.
|
||||
Make sure to return a valid CAAnimation object from imageAnimationForEmptyDataSet:
|
||||
|
||||
@param scrollView A scrollView subclass object informing the delegate.
|
||||
@return YES if the empty dataset is allowed to animate
|
||||
*/
|
||||
- (BOOL)emptyDataSetShouldAnimateImageView:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Tells the delegate that the empty dataset view was tapped.
|
||||
Use this method either to resignFirstResponder of a textfield or searchBar.
|
||||
|
||||
@param scrollView A scrollView subclass informing the delegate.
|
||||
*/
|
||||
- (void)emptyDataSetDidTapView:(UIScrollView *)scrollView DZNEmptyDataSetDeprecated(-emptyDataSet:didTapView:);
|
||||
|
||||
/**
|
||||
Tells the delegate that the action button was tapped.
|
||||
|
||||
@param scrollView A scrollView subclass informing the delegate.
|
||||
*/
|
||||
- (void)emptyDataSetDidTapButton:(UIScrollView *)scrollView DZNEmptyDataSetDeprecated(-emptyDataSet:didTapButton:);
|
||||
|
||||
/**
|
||||
Tells the delegate that the empty dataset view was tapped.
|
||||
Use this method either to resignFirstResponder of a textfield or searchBar.
|
||||
|
||||
@param scrollView A scrollView subclass informing the delegate.
|
||||
@param view the view tapped by the user
|
||||
*/
|
||||
- (void)emptyDataSet:(UIScrollView *)scrollView didTapView:(UIView *)view;
|
||||
|
||||
/**
|
||||
Tells the delegate that the action button was tapped.
|
||||
|
||||
@param scrollView A scrollView subclass informing the delegate.
|
||||
@param button the button tapped by the user
|
||||
*/
|
||||
- (void)emptyDataSet:(UIScrollView *)scrollView didTapButton:(UIButton *)button;
|
||||
|
||||
/**
|
||||
Tells the delegate that the empty data set will appear.
|
||||
|
||||
@param scrollView A scrollView subclass informing the delegate.
|
||||
*/
|
||||
- (void)emptyDataSetWillAppear:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Tells the delegate that the empty data set did appear.
|
||||
|
||||
@param scrollView A scrollView subclass informing the delegate.
|
||||
*/
|
||||
- (void)emptyDataSetDidAppear:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Tells the delegate that the empty data set will disappear.
|
||||
|
||||
@param scrollView A scrollView subclass informing the delegate.
|
||||
*/
|
||||
- (void)emptyDataSetWillDisappear:(UIScrollView *)scrollView;
|
||||
|
||||
/**
|
||||
Tells the delegate that the empty data set did disappear.
|
||||
|
||||
@param scrollView A scrollView subclass informing the delegate.
|
||||
*/
|
||||
- (void)emptyDataSetDidDisappear:(UIScrollView *)scrollView;
|
||||
|
||||
@end
|
||||
|
||||
#undef DZNEmptyDataSetDeprecated
|
||||
|
||||
1074
Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.m
generated
Normal file
1074
Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.m
generated
Normal file
File diff suppressed because it is too large
Load Diff
6
Pods/Manifest.lock
generated
6
Pods/Manifest.lock
generated
@@ -15,6 +15,7 @@ PODS:
|
||||
- AFNetworking/UIKit (4.0.1):
|
||||
- AFNetworking/NSURLSession
|
||||
- Bugly (2.6.1)
|
||||
- DZNEmptyDataSet (1.8.1)
|
||||
- LookinServer (1.2.8):
|
||||
- LookinServer/Core (= 1.2.8)
|
||||
- LookinServer/Core (1.2.8)
|
||||
@@ -29,6 +30,7 @@ PODS:
|
||||
DEPENDENCIES:
|
||||
- AFNetworking (= 4.0.1)
|
||||
- Bugly (= 2.6.1)
|
||||
- DZNEmptyDataSet (= 1.8.1)
|
||||
- LookinServer
|
||||
- Masonry (= 1.1.0)
|
||||
- MBProgressHUD (= 1.2.0)
|
||||
@@ -40,6 +42,7 @@ SPEC REPOS:
|
||||
https://github.com/CocoaPods/Specs.git:
|
||||
- AFNetworking
|
||||
- Bugly
|
||||
- DZNEmptyDataSet
|
||||
- LookinServer
|
||||
- Masonry
|
||||
- MBProgressHUD
|
||||
@@ -50,6 +53,7 @@ SPEC REPOS:
|
||||
SPEC CHECKSUMS:
|
||||
AFNetworking: 3bd23d814e976cd148d7d44c3ab78017b744cd58
|
||||
Bugly: 217ac2ce5f0f2626d43dbaa4f70764c953a26a31
|
||||
DZNEmptyDataSet: 9525833b9e68ac21c30253e1d3d7076cc828eaa7
|
||||
LookinServer: 1b2b61c6402ae29fa22182d48f5cd067b4e99e80
|
||||
Masonry: 678fab65091a9290e40e2832a55e7ab731aad201
|
||||
MBProgressHUD: 3ee5efcc380f6a79a7cc9b363dd669c5e1ae7406
|
||||
@@ -57,6 +61,6 @@ SPEC CHECKSUMS:
|
||||
MJRefresh: ff9e531227924c84ce459338414550a05d2aea78
|
||||
SDWebImage: f29024626962457f3470184232766516dee8dfea
|
||||
|
||||
PODFILE CHECKSUM: c61e30c30e1b3bee64d09e23c2f83fc77e0f8ff5
|
||||
PODFILE CHECKSUM: 3619f65be1b908e009b5ab96b3d06d846883eac0
|
||||
|
||||
COCOAPODS: 1.16.2
|
||||
|
||||
4457
Pods/Pods.xcodeproj/project.pbxproj
generated
4457
Pods/Pods.xcodeproj/project.pbxproj
generated
File diff suppressed because it is too large
Load Diff
58
Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/DZNEmptyDataSet.xcscheme
generated
Normal file
58
Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/DZNEmptyDataSet.xcscheme
generated
Normal file
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1600"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
buildImplicitDependencies = "YES">
|
||||
<BuildActionEntries>
|
||||
<BuildActionEntry
|
||||
buildForTesting = "YES"
|
||||
buildForRunning = "YES"
|
||||
buildForProfiling = "YES"
|
||||
buildForArchiving = "YES"
|
||||
buildForAnalyzing = "YES">
|
||||
<BuildableReference
|
||||
BuildableIdentifier = "primary"
|
||||
BlueprintIdentifier = "F1BCD9702276377FB5B3BDB6EAF709D7"
|
||||
BuildableName = "DZNEmptyDataSet.framework"
|
||||
BlueprintName = "DZNEmptyDataSet"
|
||||
ReferencedContainer = "container:Pods.xcodeproj">
|
||||
</BuildableReference>
|
||||
</BuildActionEntry>
|
||||
</BuildActionEntries>
|
||||
</BuildAction>
|
||||
<TestAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES">
|
||||
<Testables>
|
||||
</Testables>
|
||||
</TestAction>
|
||||
<LaunchAction
|
||||
buildConfiguration = "Debug"
|
||||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
||||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
||||
launchStyle = "0"
|
||||
useCustomWorkingDirectory = "NO"
|
||||
ignoresPersistentStateOnLaunch = "NO"
|
||||
debugDocumentVersioning = "YES"
|
||||
debugServiceExtension = "internal"
|
||||
allowLocationSimulation = "YES">
|
||||
</LaunchAction>
|
||||
<ProfileAction
|
||||
buildConfiguration = "Release"
|
||||
shouldUseLaunchSchemeArgsEnv = "YES"
|
||||
savedToolIdentifier = ""
|
||||
useCustomWorkingDirectory = "NO"
|
||||
debugDocumentVersioning = "YES">
|
||||
</ProfileAction>
|
||||
<AnalyzeAction
|
||||
buildConfiguration = "Debug">
|
||||
</AnalyzeAction>
|
||||
<ArchiveAction
|
||||
buildConfiguration = "Release"
|
||||
revealArchiveInOrganizer = "YES">
|
||||
</ArchiveAction>
|
||||
</Scheme>
|
||||
26
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-Info.plist
generated
Normal file
26
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-Info.plist
generated
Normal file
@@ -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>${PODS_DEVELOPMENT_LANGUAGE}</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>${EXECUTABLE_NAME}</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>${PRODUCT_BUNDLE_IDENTIFIER}</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.8.1</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>${CURRENT_PROJECT_VERSION}</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string></string>
|
||||
</dict>
|
||||
</plist>
|
||||
5
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-dummy.m
generated
Normal file
5
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-dummy.m
generated
Normal file
@@ -0,0 +1,5 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
@interface PodsDummy_DZNEmptyDataSet : NSObject
|
||||
@end
|
||||
@implementation PodsDummy_DZNEmptyDataSet
|
||||
@end
|
||||
12
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-prefix.pch
generated
Normal file
12
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-prefix.pch
generated
Normal file
@@ -0,0 +1,12 @@
|
||||
#ifdef __OBJC__
|
||||
#import <UIKit/UIKit.h>
|
||||
#else
|
||||
#ifndef FOUNDATION_EXPORT
|
||||
#if defined(__cplusplus)
|
||||
#define FOUNDATION_EXPORT extern "C"
|
||||
#else
|
||||
#define FOUNDATION_EXPORT extern
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
17
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-umbrella.h
generated
Normal file
17
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-umbrella.h
generated
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifdef __OBJC__
|
||||
#import <UIKit/UIKit.h>
|
||||
#else
|
||||
#ifndef FOUNDATION_EXPORT
|
||||
#if defined(__cplusplus)
|
||||
#define FOUNDATION_EXPORT extern "C"
|
||||
#else
|
||||
#define FOUNDATION_EXPORT extern
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#import "UIScrollView+EmptyDataSet.h"
|
||||
|
||||
FOUNDATION_EXPORT double DZNEmptyDataSetVersionNumber;
|
||||
FOUNDATION_EXPORT const unsigned char DZNEmptyDataSetVersionString[];
|
||||
|
||||
14
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.debug.xcconfig
generated
Normal file
14
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.debug.xcconfig
generated
Normal file
@@ -0,0 +1,14 @@
|
||||
APPLICATION_EXTENSION_API_ONLY = YES
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
|
||||
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
OTHER_LDFLAGS = $(inherited) -framework "UIKit"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE}
|
||||
PODS_ROOT = ${SRCROOT}
|
||||
PODS_TARGET_SRCROOT = ${PODS_ROOT}/DZNEmptyDataSet
|
||||
PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates
|
||||
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
|
||||
SKIP_INSTALL = YES
|
||||
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
|
||||
6
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.modulemap
generated
Normal file
6
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.modulemap
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
framework module DZNEmptyDataSet {
|
||||
umbrella header "DZNEmptyDataSet-umbrella.h"
|
||||
|
||||
export *
|
||||
module * { export * }
|
||||
}
|
||||
14
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.release.xcconfig
generated
Normal file
14
Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.release.xcconfig
generated
Normal file
@@ -0,0 +1,14 @@
|
||||
APPLICATION_EXTENSION_API_ONLY = YES
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
|
||||
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
OTHER_LDFLAGS = $(inherited) -framework "UIKit"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE}
|
||||
PODS_ROOT = ${SRCROOT}
|
||||
PODS_TARGET_SRCROOT = ${PODS_ROOT}/DZNEmptyDataSet
|
||||
PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates
|
||||
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
|
||||
SKIP_INSTALL = YES
|
||||
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
|
||||
@@ -24,6 +24,19 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
|
||||
## DZNEmptyDataSet
|
||||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
|
||||
## MBProgressHUD
|
||||
|
||||
Copyright © 2009-2020 Matej Bukovinski
|
||||
|
||||
@@ -41,6 +41,25 @@ THE SOFTWARE.
|
||||
<key>Type</key>
|
||||
<string>PSGroupSpecifier</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>FooterText</key>
|
||||
<string>The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
</string>
|
||||
<key>License</key>
|
||||
<string>MIT</string>
|
||||
<key>Title</key>
|
||||
<string>DZNEmptyDataSet</string>
|
||||
<key>Type</key>
|
||||
<string>PSGroupSpecifier</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>FooterText</key>
|
||||
<string>Copyright © 2009-2020 Matej Bukovinski
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
|
||||
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry"
|
||||
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry"
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers"
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers"
|
||||
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks'
|
||||
OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "CoreGraphics" -framework "Foundation" -framework "MBProgressHUD" -framework "MJExtension" -framework "Masonry" -framework "QuartzCore" -framework "UIKit"
|
||||
OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry"
|
||||
OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "CoreGraphics" -framework "DZNEmptyDataSet" -framework "Foundation" -framework "MBProgressHUD" -framework "MJExtension" -framework "Masonry" -framework "QuartzCore" -framework "UIKit"
|
||||
OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
|
||||
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry"
|
||||
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry"
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers"
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers"
|
||||
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks'
|
||||
OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "CoreGraphics" -framework "Foundation" -framework "MBProgressHUD" -framework "MJExtension" -framework "Masonry" -framework "QuartzCore" -framework "UIKit"
|
||||
OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry"
|
||||
OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "CoreGraphics" -framework "DZNEmptyDataSet" -framework "Foundation" -framework "MBProgressHUD" -framework "MJExtension" -framework "Masonry" -framework "QuartzCore" -framework "UIKit"
|
||||
OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
|
||||
|
||||
@@ -166,4 +166,17 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
|
||||
|
||||
## DZNEmptyDataSet
|
||||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
Generated by CocoaPods - https://cocoapods.org
|
||||
|
||||
@@ -226,6 +226,25 @@ THE SOFTWARE.
|
||||
<key>Type</key>
|
||||
<string>PSGroupSpecifier</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>FooterText</key>
|
||||
<string>The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
</string>
|
||||
<key>License</key>
|
||||
<string>MIT</string>
|
||||
<key>Title</key>
|
||||
<string>DZNEmptyDataSet</string>
|
||||
<key>Type</key>
|
||||
<string>PSGroupSpecifier</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>FooterText</key>
|
||||
<string>Generated by CocoaPods - https://cocoapods.org</string>
|
||||
|
||||
@@ -5,4 +5,5 @@ ${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework
|
||||
${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework
|
||||
${BUILT_PRODUCTS_DIR}/LookinServer/LookinServer.framework
|
||||
${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework
|
||||
${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework
|
||||
${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework
|
||||
${BUILT_PRODUCTS_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework
|
||||
@@ -4,4 +4,5 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework
|
||||
${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework
|
||||
${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LookinServer.framework
|
||||
${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework
|
||||
${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework
|
||||
${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework
|
||||
${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DZNEmptyDataSet.framework
|
||||
@@ -4,4 +4,5 @@ ${BUILT_PRODUCTS_DIR}/MBProgressHUD/MBProgressHUD.framework
|
||||
${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework
|
||||
${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework
|
||||
${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework
|
||||
${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework
|
||||
${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework
|
||||
${BUILT_PRODUCTS_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework
|
||||
@@ -3,4 +3,5 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MBProgressHUD.framework
|
||||
${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework
|
||||
${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework
|
||||
${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework
|
||||
${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework
|
||||
${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework
|
||||
${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DZNEmptyDataSet.framework
|
||||
@@ -183,6 +183,7 @@ if [[ "$CONFIGURATION" == "Debug" ]]; then
|
||||
install_framework "${BUILT_PRODUCTS_DIR}/LookinServer/LookinServer.framework"
|
||||
install_framework "${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework"
|
||||
install_framework "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework"
|
||||
install_framework "${BUILT_PRODUCTS_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework"
|
||||
fi
|
||||
if [[ "$CONFIGURATION" == "Release" ]]; then
|
||||
install_framework "${BUILT_PRODUCTS_DIR}/AFNetworking/AFNetworking.framework"
|
||||
@@ -191,6 +192,7 @@ if [[ "$CONFIGURATION" == "Release" ]]; then
|
||||
install_framework "${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework"
|
||||
install_framework "${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework"
|
||||
install_framework "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework"
|
||||
install_framework "${BUILT_PRODUCTS_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework"
|
||||
fi
|
||||
if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then
|
||||
wait
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
|
||||
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/LookinServer" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_ROOT}/Bugly"
|
||||
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "${PODS_CONFIGURATION_BUILD_DIR}/LookinServer" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_ROOT}/Bugly"
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LookinServer/LookinServer.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers"
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LookinServer/LookinServer.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers"
|
||||
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
|
||||
OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"z" -framework "AFNetworking" -framework "Bugly" -framework "CoreGraphics" -framework "Foundation" -framework "ImageIO" -framework "LookinServer" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "Masonry" -framework "QuartzCore" -framework "SDWebImage" -framework "Security" -framework "SystemConfiguration" -framework "UIKit"
|
||||
OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/Bugly" "-F${PODS_CONFIGURATION_BUILD_DIR}/LookinServer" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage"
|
||||
OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"z" -framework "AFNetworking" -framework "Bugly" -framework "CoreGraphics" -framework "DZNEmptyDataSet" -framework "Foundation" -framework "ImageIO" -framework "LookinServer" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "Masonry" -framework "QuartzCore" -framework "SDWebImage" -framework "Security" -framework "SystemConfiguration" -framework "UIKit"
|
||||
OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/Bugly" "-F${PODS_CONFIGURATION_BUILD_DIR}/LookinServer" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO
|
||||
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_ROOT}/Bugly"
|
||||
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_ROOT}/Bugly"
|
||||
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers"
|
||||
HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers"
|
||||
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
|
||||
OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"z" -framework "AFNetworking" -framework "Bugly" -framework "CoreGraphics" -framework "Foundation" -framework "ImageIO" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "Masonry" -framework "QuartzCore" -framework "SDWebImage" -framework "Security" -framework "SystemConfiguration" -framework "UIKit"
|
||||
OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/Bugly" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage"
|
||||
OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"z" -framework "AFNetworking" -framework "Bugly" -framework "CoreGraphics" -framework "DZNEmptyDataSet" -framework "Foundation" -framework "ImageIO" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "Masonry" -framework "QuartzCore" -framework "SDWebImage" -framework "Security" -framework "SystemConfiguration" -framework "UIKit"
|
||||
OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/Bugly" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet"
|
||||
PODS_BUILD_DIR = ${BUILD_DIR}
|
||||
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
||||
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
|
||||
|
||||
@@ -545,14 +545,10 @@
|
||||
inputFileListPaths = (
|
||||
"${PODS_ROOT}/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = "[CP] Embed Pods Frameworks";
|
||||
outputFileListPaths = (
|
||||
"${PODS_ROOT}/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
||||
);
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks.sh\"\n";
|
||||
|
||||
Reference in New Issue
Block a user