Files
JJBB/Sdk/iOS/YuCheng/ThirdLibs/ShareSDK/ShareSDK.framework/Headers/SSDKAuthViewStyle.h

99 lines
1.6 KiB
C
Raw Normal View History

2024-08-23 15:49:34 +08:00
//
// SSDKAuthViewStyle.h
// ShareSDK
//
// Created by fenghj on 15/4/13.
// Copyright (c) 2015年 掌淘科技. All rights reserved.
//
#import <Foundation/Foundation.h>
/**
*
*/
@interface SSDKAuthViewStyle : NSObject
/**
*
*
* @param image
*/
+ (void)setNavigationBarBackgroundImage:(UIImage *)image;
/**
*
*
* @param color
*/
+ (void)setNavigationBarBackgroundColor:(UIColor *)color;
/**
*
*
* @param title
*/
+ (void)setTitle:(NSString *)title;
/**
*
*
* @param color
*/
+ (void)setTitleColor:(UIColor *)color;
/**
*
*
* @param label
*/
+ (void)setCancelButtonLabel:(NSString *)label;
/**
*
*
* @param color
*/
+ (void)setCancelButtonLabelColor:(UIColor *)color;
/**
*
*
* @param image
*/
+ (void)setCancelButtonImage:(UIImage *)image;
/**
*
*
* @param margin
*/
+ (void)setCancelButtonLeftMargin:(CGFloat)margin;
/**
*
*
* @param button
*/
+ (void)setRightButton:(UIButton *)button;
/**
*
*
* @param margin
*/
+ (void)setRightButtonRightMargin:(CGFloat)margin;
/**
*
*/
+ (void)setSupportedInterfaceOrientation:(UIInterfaceOrientationMask)toInterfaceOrientation;
/**
*
*
* @param style
*/
+ (void)setStatusBarStyle:(UIStatusBarStyle)style;
@end