QNUserAgent.h 503 Bytes
Newer Older
zhukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
//
//  QNUserAgent.h
//  QiniuSDK
//
//  Created by bailong on 14-9-29.
//  Copyright (c) 2014年 Qiniu. All rights reserved.
//

#import <Foundation/Foundation.h>

/**
 *    UserAgent
 *
 */

@interface QNUserAgent : NSObject

/**
 *    用户id
 */
@property (copy, nonatomic, readonly) NSString *id;

/**
 *    UserAgent 字串
 */
- (NSString *)description;

/**
 *    UserAgent + AK 字串
 */
- (NSString *)getUserAgent:(NSString *)access;

/**
 *  单例
 */
+ (instancetype)sharedInstance;
@end