24 lines
521 B
Objective-C
24 lines
521 B
Objective-C
//
|
|
// FSPagerViewObjcCompat.h
|
|
// FSPagerView
|
|
//
|
|
// Created by 丁文超 on 2018/9/18.
|
|
// Copyright © 2018 Wenchao Ding. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#define FSPagerViewExtern extern
|
|
|
|
/**
|
|
Requests that FSPagerView use the default value for a given distance.
|
|
*/
|
|
FSPagerViewExtern NSUInteger const FSPagerViewAutomaticDistance;
|
|
|
|
/**
|
|
Requests that FSPagerView use the default value for a given size.
|
|
*/
|
|
FSPagerViewExtern CGSize const FSPagerViewAutomaticSize;
|
|
|