@@ -13,6 +13,7 @@ target 'librx' do
|
||||
pod 'SDWebImage', '~>3.7'
|
||||
pod 'WeiboSDK', :git => 'https://github.com/sinaweibosdk/weibo_ios_sdk.git', :tag => '3.1.3'
|
||||
pod 'WebViewJavascriptBridge', '~> 4.0.1'
|
||||
pod 'Toast', '~> 2.4’
|
||||
end
|
||||
|
||||
target 'librxTests' do
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// UMSocial.h
|
||||
// SocialSDK
|
||||
//
|
||||
// Created by Jiahuan Ye on 13-5-22.
|
||||
// Copyright (c) 2013年 Umeng. All rights reserved.
|
||||
//
|
||||
|
||||
#import "UMSocialData.h" //分享内容类
|
||||
#import "UMSocialDataService.h" //分享数据级接口类
|
||||
#import "UMSocialControllerService.h" //分享界面级接口类
|
||||
#import "UMSocialControllerServiceComment.h" //评论界面级接口类
|
||||
#import "UMSocialAccountManager.h" //账户管理,和账户类
|
||||
#import "UMSocialSnsPlatformManager.h" //平台管理,和平台类
|
||||
#import "UMSocialSnsService.h" //提供快速分享
|
||||
#import "UMSocialBar.h" //社会化操作栏
|
||||
#import "UMSocialConfig.h" //sdk配置类
|
||||
#import "UMSocialSnsData.h" //区分不同平台设置不同分享内容
|
||||
@@ -0,0 +1,243 @@
|
||||
//
|
||||
// UMSocialAccountManager.h
|
||||
// SocialSDK
|
||||
//
|
||||
// Created by yeahugo on 13-1-15.
|
||||
// Copyright (c) 2013年 Umeng. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "UMSocialDataService.h"
|
||||
|
||||
/**
|
||||
用户微博账户对象,对象数据从授权账号所对应的微博平台获取
|
||||
*/
|
||||
@interface UMSocialAccountEntity : NSObject<NSCoding>
|
||||
|
||||
|
||||
/**
|
||||
微博平台名称,例如"sina"、"tencent",定义在`UMSocialSnsPlatformManager.h`
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *platformName;
|
||||
|
||||
/**
|
||||
用户昵称
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *userName;
|
||||
|
||||
/**
|
||||
用户在微博的id号
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *usid;
|
||||
|
||||
/**
|
||||
用户微博头像的url
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *iconURL;
|
||||
|
||||
/**
|
||||
用户授权后得到的accessToken
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *accessToken;
|
||||
|
||||
/**
|
||||
用户微博网址url
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *profileURL;
|
||||
|
||||
/**
|
||||
是否首次授权,sdk内使用
|
||||
*/
|
||||
@property (nonatomic) BOOL isFirstOauth;
|
||||
|
||||
|
||||
/**
|
||||
添加已授权的腾讯微博和qq空间账号,需要用到的openId
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *openId;
|
||||
|
||||
/**
|
||||
授权的过期时间
|
||||
*/
|
||||
@property (nonatomic, retain) NSDate *expirationDate;
|
||||
|
||||
/**
|
||||
授权到微信用到的refreshToken
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *refreshToken;
|
||||
|
||||
/**
|
||||
微信授权完成后得到的unionId
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *unionId;
|
||||
|
||||
/**
|
||||
初始化方法
|
||||
|
||||
@param platformName 微博平台名
|
||||
|
||||
@return 初始化对象
|
||||
*/
|
||||
-(id)initWithPlatformName:(NSString *)platformName;
|
||||
|
||||
/**
|
||||
把各属性编码成NSString
|
||||
|
||||
@return 一个`NSString`对象
|
||||
*/
|
||||
-(NSString *)description;
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
男性用户
|
||||
|
||||
*/
|
||||
extern NSString *const UMSCustomAccountGenderMale;
|
||||
|
||||
/**
|
||||
女性用户
|
||||
|
||||
*/
|
||||
extern NSString *const UMSCustomAccountGenderFeMale;
|
||||
|
||||
/**
|
||||
开发者自有账户对象,在app登录或者注册完成之后用用户名来初始化这样的对象,可以指定头像等,然后用`UMSocialAccountManager`来添加到友盟的账户体系上,使用我们的评论列表和个人中心的页面时就会显示自有账号的用户名和头像
|
||||
|
||||
*/
|
||||
@interface UMSocialCustomAccount : NSObject
|
||||
|
||||
/**
|
||||
用户名
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *userName;
|
||||
|
||||
/**
|
||||
用户id
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *usid;
|
||||
|
||||
/**
|
||||
性别
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *gender;
|
||||
|
||||
/**
|
||||
生日
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) NSDate *birthday;
|
||||
|
||||
/**
|
||||
个人页面地址
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *profileUrl;
|
||||
|
||||
/**
|
||||
头像url
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *iconUrl;
|
||||
|
||||
/**
|
||||
自定义数据
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) NSDictionary *customData;
|
||||
|
||||
/**
|
||||
初始化自定义用户
|
||||
|
||||
@param userName 用户名
|
||||
|
||||
@return 自定义用户对象
|
||||
*/
|
||||
-(id)initWithUserName:(NSString *)userName;
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
账号管理,可以添加开发者应用的自有账号到友盟的账号体系,查询此sns平台是否授权等。
|
||||
|
||||
*/
|
||||
@interface UMSocialAccountManager : NSObject
|
||||
|
||||
/**
|
||||
存放用户在各个微博平台账户信息的哈希对象,以各个平台名为key,以`UMSocialAccountEntity`对象为value
|
||||
|
||||
*/
|
||||
+(NSDictionary *)socialAccountDictionary;
|
||||
|
||||
/**
|
||||
添加自己获取到的sns账号,必须要有sns用户的usid和accessToken。添加成功后,需要调用`+(void)setSnsAccount:(UMSocialAccountEntity *)snsAccount; `把账户添加到本地缓存。
|
||||
|
||||
@param snsAccount 已经授权的sns账号对象
|
||||
@param completion 回调Block对象
|
||||
|
||||
*/
|
||||
+(void)postSnsAccount:(UMSocialAccountEntity *)snsAccount completion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
|
||||
/**
|
||||
添加自有账号到友盟的账号体系,一般是用户在使用自有账号登录之后,再利用此方法上传账号,然后利用我们评论和个人中心的接口就会显示自有账号的昵称和头像等信息
|
||||
|
||||
@param customAccount 自有账号对象
|
||||
@param completion 回调Block对象
|
||||
|
||||
*/
|
||||
+(void)postCustomAccount:(UMSocialCustomAccount *)customAccount completion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
|
||||
/**
|
||||
把自有账号添加到本地账号中
|
||||
|
||||
@param snsAccount 已经授权成功的账户对象
|
||||
|
||||
*/
|
||||
+(void)setSnsAccount:(UMSocialAccountEntity *)snsAccount;
|
||||
|
||||
|
||||
/**
|
||||
判断是否登录,此登录包括以游客身份登录,如果已经登录评论编辑页面点击发送就不会提示登录。
|
||||
|
||||
*/
|
||||
+ (BOOL)isLogin;
|
||||
|
||||
/**
|
||||
判断是否用sns账号来登录,即绑定一个sns账号作为登录账号,如果是的话,个人中心页面上半部分和评论列表即显示此用户名、头像。
|
||||
|
||||
*/
|
||||
+ (BOOL)isLoginWithSnsAccount;
|
||||
|
||||
/**
|
||||
判断是否授权此sns平台,此方法不包含授权过期的情况,如果要在分享前判断是否授权并且token没有过期,需要用`isOauthAndTokenNotExpired`方法
|
||||
|
||||
@param platformType sns平台名,定义在`UMSocialSnsPlatformManager.h`
|
||||
*/
|
||||
+ (BOOL)isOauthWithPlatform:(NSString *)platformType;
|
||||
|
||||
/**
|
||||
判断此平台是否授权,并且token没有过期
|
||||
|
||||
@param platformType sns平台名,定义在`UMSocialSnsPlatformManager.h`
|
||||
*/
|
||||
+(BOOL)isOauthAndTokenNotExpired:(NSString *)platformType;
|
||||
|
||||
/**
|
||||
判断是否以游客身份登录。游客身份的过程是用户进入登录页面,并且选以游客身份登录,如果用户选择其他平台登录或者没有进入登录页面都是非游客身份登录。
|
||||
|
||||
*/
|
||||
+ (BOOL)isLoginWithAnonymous;
|
||||
|
||||
/**
|
||||
设置是否已经以游客身份来登录,如果以游客身份登录,评论会显示匿名和使用默认头像,如果没有使用游客身份,会弹出登录界面,选择一个sns平台作为登录账号之后再评论。
|
||||
|
||||
*/
|
||||
+ (void)setIsLoginWithAnonymous:(BOOL)anonymous;
|
||||
|
||||
@end
|
||||
@@ -0,0 +1,158 @@
|
||||
//
|
||||
// UMSocialBar.h
|
||||
// SocialSDK
|
||||
//
|
||||
// Created by yeahugo on 13-7-2.
|
||||
// Copyright (c) 2013年 Umeng. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "UMSocialSnsPlatformManager.h"
|
||||
#import "UMSocialControllerServiceComment.h"
|
||||
|
||||
/**
|
||||
分享
|
||||
*/
|
||||
extern NSString *const UMSocialShare;
|
||||
|
||||
/**
|
||||
喜欢
|
||||
*/
|
||||
extern NSString *const UMSocialLike;
|
||||
|
||||
/**
|
||||
评论
|
||||
*/
|
||||
extern NSString *const UMSocialComment;
|
||||
|
||||
/**
|
||||
个人中心
|
||||
*/
|
||||
extern NSString *const UMSocialAccount;
|
||||
|
||||
|
||||
typedef void (^ClickHandler)(void);
|
||||
|
||||
|
||||
/**
|
||||
代表平台或者功能的按钮
|
||||
*/
|
||||
@interface UMSocialButton : UIButton
|
||||
|
||||
/**
|
||||
点击按钮之后的响应事件
|
||||
*/
|
||||
@property (nonatomic, copy) ClickHandler clickHandler;
|
||||
|
||||
/**
|
||||
当前`<UMSocialUIDelegate>`对象,此对象可以获取到授权完成,关闭页面等状态,详情看`UMSocialUIDelegate`的定义
|
||||
*/
|
||||
@property (nonatomic, assign) id <UMSocialUIDelegate> socialUIDelegate;
|
||||
|
||||
/**
|
||||
按钮名称
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *buttonName;
|
||||
|
||||
/**
|
||||
按钮初始化方法
|
||||
|
||||
@param buttonName 按钮类型,可以指定`UMSocialShare`,`UMSocialComment`,`UMSocialLike`、`UMSocialAccount`分别代表分享、评论、喜欢、个人中心
|
||||
或者`UMShareToSina`、`UMShareToTencent`等代表各个微博平台
|
||||
|
||||
@param socialData 数据对象,如果是评论或者喜欢,代表不同的评论、喜欢对象。可以传nil,使用默认数据对象
|
||||
|
||||
@param controller 分享编辑页面、评论页面等将弹到的UIViewController对象
|
||||
|
||||
*/
|
||||
-(id)initWithButtonName:(NSString *)buttonName
|
||||
socialData:(UMSocialData *)socialData
|
||||
controller:(UIViewController *)controller;
|
||||
|
||||
/**
|
||||
按钮初始化方法
|
||||
|
||||
@param buttonName 按钮类型,可以指定`UMSocialShare`,`UMSocialComment`,`UMSocialLike`、`UMSocialAccount`分别代表分享、评论、喜欢、个人中心
|
||||
或者`UMShareToSina`、`UMShareToTencent`等代表各个微博平台
|
||||
|
||||
@param controllerService UMSocialControllerService对象,如果是评论或者喜欢,代表不同的评论、喜欢对象。可以传nil,使用默认数据对象
|
||||
|
||||
@param controller 分享编辑页面、评论页面等将弹到的UIViewController对象
|
||||
|
||||
*/
|
||||
-(id)initWithButtonName:(NSString *)buttonName
|
||||
controllerService:(UMSocialControllerServiceComment *)controllerService
|
||||
controller:(UIViewController *)controller;
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
社会化操作栏,默认集成了评论、喜欢、分享、个人中心等功能。
|
||||
你可以根据你的需求对操作栏上的各个按钮进行定制,方法是修改barButtons数组。
|
||||
*/
|
||||
@interface UMSocialBar : UIView
|
||||
|
||||
/**
|
||||
代表操作栏上所有按钮的数组,数组的元素是UMSocialButton对象。
|
||||
|
||||
你可以增加自定义的按钮,例如
|
||||
|
||||
```
|
||||
UMSocialButton *customButton = [[UMSocialButton alloc] initWithButtonType:@"custom" socialData:nil controller:nil];
|
||||
customButton.clickHandler = ^(){
|
||||
NSLog(@"click !!");
|
||||
};
|
||||
[customButton setImage:[UIImage imageNamed:@"icon"] forState:UIControlStateNormal];
|
||||
[_socialBar.barButtons addObject:customButton];
|
||||
```
|
||||
|
||||
你可以删除指定的按钮
|
||||
|
||||
```
|
||||
[_socialBar.barButtons removeObjectAtIndex:1];
|
||||
```
|
||||
|
||||
可以修改指定按钮
|
||||
|
||||
```
|
||||
UMSocialButton *socialButton1 = [_socialBar.barButtons objectAtIndex:1];
|
||||
socialButton1.clickHandler = ^(){
|
||||
NSLog(@"click!!");
|
||||
};
|
||||
```
|
||||
*/
|
||||
@property (nonatomic, retain) NSMutableArray *barButtons;
|
||||
|
||||
/**
|
||||
`UMSocialData`对象,可以通过该对象设置分享内嵌文字、图片,获取分享数等属性
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialData *socialData;
|
||||
|
||||
/**
|
||||
当前`<UMSocialUIDelegate>`对象,此对象可以获取到授权完成,关闭页面等状态,详情看`UMSocialUIDelegate`的定义
|
||||
*/
|
||||
@property (nonatomic, assign) id <UMSocialUIDelegate> socialUIDelegate;
|
||||
|
||||
/**
|
||||
初始化方法
|
||||
|
||||
@param socialData 标识不同分享对象
|
||||
|
||||
@param viewController 分享编辑页面等弹出到的UIViewController对象
|
||||
*/
|
||||
- (id)initWithUMSocialData:(UMSocialData *)socialData
|
||||
withViewController:(UIViewController *)viewController;
|
||||
|
||||
/**
|
||||
更新操作栏的数字
|
||||
|
||||
*/
|
||||
- (void)updateButtonNumber;
|
||||
|
||||
/*
|
||||
从线上获取分享、评论、喜欢等个数,更新按钮文字
|
||||
|
||||
*/
|
||||
- (void)requestUpdateButtonNumber;
|
||||
|
||||
@end
|
||||
@@ -0,0 +1,301 @@
|
||||
//
|
||||
// UMSConfigManager.h
|
||||
// SocialSDK
|
||||
//
|
||||
// Created by Jiahuan Ye on 12-9-15.
|
||||
// Copyright (c) umeng.com All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "UMSocialDataService.h"
|
||||
|
||||
|
||||
#ifndef __IPHONE_6_0
|
||||
typedef enum {
|
||||
UIInterfaceOrientationMaskPortrait = (1 << UIInterfaceOrientationPortrait),
|
||||
UIInterfaceOrientationMaskLandscapeLeft = (1 << UIInterfaceOrientationLandscapeLeft),
|
||||
UIInterfaceOrientationMaskLandscapeRight = (1 << UIInterfaceOrientationLandscapeRight),
|
||||
UIInterfaceOrientationMaskPortraitUpsideDown = (1 << UIInterfaceOrientationPortraitUpsideDown),
|
||||
UIInterfaceOrientationMaskLandscape = (UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight),
|
||||
UIInterfaceOrientationMaskAll = (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight | UIInterfaceOrientationMaskPortraitUpsideDown),
|
||||
UIInterfaceOrientationMaskAllButUpsideDown = (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight),
|
||||
} UIInterfaceOrientationMask;
|
||||
#endif
|
||||
|
||||
typedef enum {
|
||||
UMSocialiToastPositionTop = 1000001, //提示位置在屏幕上部
|
||||
UMSocialiToastPositionBottom, //提示位置在屏幕下部
|
||||
UMSocialiToastPositionCenter //提示位置在屏幕中间
|
||||
} UMSocialiToastPosition;
|
||||
|
||||
/**
|
||||
SDK样式主题
|
||||
|
||||
*/
|
||||
typedef enum {
|
||||
UMSocialThemeBlack, //黑色主题
|
||||
UMSocialThemeWhite //白色主题
|
||||
} UMSocialTheme;
|
||||
|
||||
|
||||
/**
|
||||
设置分享列表页面的Block类型
|
||||
|
||||
@param ref 分享列表绘图所用的CGContext对象
|
||||
@param backgroundView 分享列表的背景图片
|
||||
@param label 平台文字
|
||||
*/
|
||||
typedef void (^UMGridViewConfig)(CGContextRef ref, UIImageView *backgroundView, UILabel *label) ;
|
||||
|
||||
/**
|
||||
设置导航栏的样式的Block类型
|
||||
|
||||
@param bar 导航栏
|
||||
@param closeButton 关闭按钮
|
||||
@param backButton 返回按钮
|
||||
@param postButton 发送按钮
|
||||
@param refreshButton 刷新按钮
|
||||
@param navigationItem 所在UINavigationController的navigationItem,可以改变相应的标题
|
||||
|
||||
*/
|
||||
typedef void (^UMNavigationBarConfig)(UINavigationBar *bar,
|
||||
UIButton *closeButton,
|
||||
UIButton *backButton,
|
||||
UIButton *postButton,
|
||||
UIButton *refreshButton,
|
||||
UINavigationItem * navigationItem);
|
||||
|
||||
/**
|
||||
设置TableViewCell的样式
|
||||
|
||||
@param cell UITableViewCell
|
||||
@param viewControllerType 页面类型
|
||||
|
||||
*/
|
||||
typedef void (^UMTableViewCellConfig)(UITableViewCell *cell,UMSViewControllerType viewControllerType);
|
||||
|
||||
/**
|
||||
SDK设置类,负责改变SDK功能配置
|
||||
|
||||
*/
|
||||
@interface UMSocialConfig : NSObject
|
||||
|
||||
/**
|
||||
设置显示的sns平台类型
|
||||
|
||||
@param platformNames 在`UMSocialSnsPlatformManager.h`定义的UMShareToSina、UMShareToTencent、UMShareToQzone、UMShareToRenren、UMShareToDouban、UMShareToEmail、UMShareToSms组成的NSArray
|
||||
*/
|
||||
+ (void)setSnsPlatformNames:(NSArray *)platformNames;
|
||||
|
||||
/**
|
||||
设置sdk所有页面需要支持屏幕方向.
|
||||
|
||||
@param interfaceOrientations 一个bit map(位掩码),ios 6定义的`UIInterfaceOrientationMask`
|
||||
*/
|
||||
+ (void)setSupportedInterfaceOrientations:(UIInterfaceOrientationMask)interfaceOrientations;
|
||||
|
||||
/**
|
||||
设置社会化组件UI主题,现在有黑色和白色两种
|
||||
|
||||
@param theme UI主题
|
||||
|
||||
*/
|
||||
+ (void) setTheme:(UMSocialTheme)theme;
|
||||
|
||||
|
||||
/**
|
||||
设置分享列表页面,Block对象的形参包括有绘制当前线条的CGContex指针,icon背景视图
|
||||
例如下面写法
|
||||
```
|
||||
[UMSocialConfig setShareGridViewTheme:^(CGContextRef ref, UIImageView *backgroundView,UILabel *label){
|
||||
//改变线颜色和线宽
|
||||
CGContextSetRGBStrokeColor(ref, 0, 0, 0, 1.0);
|
||||
CGContextSetLineWidth(ref, 1.0);
|
||||
//改变背景颜色
|
||||
backgroundView.backgroundColor = [UIColor blackColor];
|
||||
|
||||
//添加背景图片
|
||||
UIImageView *imageView = [[UIImageView alloc] initWithFrame:backgroundView.frame];
|
||||
imageView.image = [UIImage imageNamed:@"share_bg.png"];
|
||||
[backgroundView addSubview:imageView];
|
||||
backgroundView.backgroundColor = [UIColor clearColor];
|
||||
|
||||
//改变文字标题的文字颜色
|
||||
label.textColor = [UIColor blueColor];
|
||||
//隐藏文字
|
||||
label.hidden = YES;
|
||||
}];
|
||||
```
|
||||
|
||||
@param gridViewConfig 设置分享列表样式的block对象
|
||||
|
||||
*/
|
||||
+(void)setShareGridViewTheme:(UMGridViewConfig)gridViewConfig;
|
||||
|
||||
/**
|
||||
设置导航栏,包括导航栏的UINavigationBar,返回按钮,关闭按钮,发送按钮,刷新按钮和中间的UINavigationItem的样式
|
||||
例如下面写法:
|
||||
|
||||
```
|
||||
[UMSocialConfig setNavigationBarConfig:^(UINavigationBar *bar,
|
||||
UIButton *closeButton,
|
||||
UIButton *backButton,
|
||||
UIButton *postButton,
|
||||
UIButton *refreshButton,
|
||||
UINavigationItem * navigationItem){
|
||||
UIImage * backgroundImage = [UIImage imageNamed:@"UMSocialSDKResourcesNew.bundle/OtherTheme/UMS_nav_bar_bg"];
|
||||
|
||||
if ([bar respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)]) {
|
||||
[bar setBackgroundImage:backgroundImage forBarMetrics:UIBarMetricsDefault];
|
||||
}
|
||||
bar.titleTextAttributes = nil;
|
||||
}];
|
||||
```
|
||||
|
||||
@param navigationConfig 设置导航栏样式的block对象
|
||||
navigationConfig 是一个Block对象,传入的参数包括:
|
||||
@param bar 导航栏
|
||||
@param closeButton 关闭按钮
|
||||
@param backButton 返回按钮
|
||||
@param postButton 发送按钮
|
||||
@param refreshButton 刷新按钮
|
||||
@param navigationItem 所在UINavigationController的navigationItem,可以改变相应的标题
|
||||
*/
|
||||
+(void)setNavigationBarConfig:(UMNavigationBarConfig)navigationConfig;
|
||||
|
||||
/**
|
||||
设置分享列表页,个人中心页面等的UITableViewCell的样式
|
||||
|
||||
@param tableViewCellConfig UITableViewCell的样式配置Block
|
||||
@param cell UITableViewCell
|
||||
@param viewControllerType 页面类型
|
||||
|
||||
*/
|
||||
+(void)setTableViewCellConfig:(UMTableViewCellConfig)tableViewCellConfig;
|
||||
|
||||
/**
|
||||
设置分享完成时“发送完成”或者分享错误等提示
|
||||
|
||||
@param isHidden 是否隐藏该提示
|
||||
@param toastPosition 提示的位置,可以设置成在屏幕上部、中间、下部
|
||||
*/
|
||||
+(void)setFinishToastIsHidden:(BOOL)isHidden position:(UMSocialiToastPosition)toastPosition;
|
||||
|
||||
/**
|
||||
设置官方微博账号,设置之后可以在授权页面有关注微博的选项,默认勾选,授权之后用户即关注官方微博,仅支持新浪微博和腾讯微博
|
||||
|
||||
@param weiboUids 腾讯微博和新浪微博的key分别是`UMShareToSina`和`UMShareToTenc`,值分别是官方微博的uid,例如`[UMSocialConfig setFollowWeiboUids:[NSDictionary dictionaryWithObjectsAndKeys:@"yourSinaUid",UMShareToSina,nil]];`
|
||||
*/
|
||||
+ (void)setFollowWeiboUids:(NSDictionary *)weiboUids;
|
||||
|
||||
/**
|
||||
设置新增加`UMSocialSnsPlatform`对象
|
||||
@param snsPlatformArray `UMSocialSnsPlatform`组成的数组对象
|
||||
|
||||
*/
|
||||
+ (void)addSocialSnsPlatform:(NSArray *)snsPlatformArray;
|
||||
|
||||
/**
|
||||
设置页面的背景颜色
|
||||
@param defaultColor 设置页面背景颜色
|
||||
|
||||
*/
|
||||
+ (void)setDefaultColor:(UIColor *)defaultColor;
|
||||
|
||||
/**
|
||||
设置iPad页面的大小
|
||||
@param size 页面大小
|
||||
|
||||
*/
|
||||
+ (void)setBoundsSizeForiPad:(CGSize)size;
|
||||
|
||||
/**
|
||||
设置分享编辑页面是否等待完成之后再关闭页面还是立即关闭,如果设置成YES,就是等待分享完成之后再关闭,否则立即关闭。
|
||||
2.2版本前默认等待分享完成之后再关闭。
|
||||
2.2版本之后默认设置成立即关闭页面
|
||||
|
||||
@param shouldShareSynchronous 是否同步分享
|
||||
|
||||
*/
|
||||
+ (void)setShouldShareSynchronous:(BOOL)shouldShareSynchronous;
|
||||
|
||||
/**
|
||||
设置评论页面是否出现分享按钮,默认出现
|
||||
|
||||
*/
|
||||
+ (void)setShouldCommentWithShare:(BOOL)shouldCommentWithShare;
|
||||
|
||||
/**
|
||||
设置评论页面是否出现分享地理位置信息的按钮,默认出现
|
||||
|
||||
*/
|
||||
+ (void)setShouldCommentWithLocation:(BOOL)shouldCommentWithLocation;
|
||||
|
||||
/** Deprecated API, Use [UMSocialConfig showPlatformWhenNotInstall:nil];
|
||||
显示所有平台,某些平台例如微信和QQ,需要安装客户端才能分享,若没有安装客户端情况下不显示这些平台
|
||||
|
||||
*/
|
||||
//+ (void)showAllPlatform:(BOOL)showAllPlatform;
|
||||
|
||||
/** Deprecated API, Use [UMSocialConfig hiddenNotInstallPlatforms:nil];
|
||||
指定显示没有安装客户端的平台,默认需要客户端的分享平台不显示。
|
||||
传nil则显示所有平台。
|
||||
|
||||
@param showPlatforms 指定要显示的平台
|
||||
|
||||
*/
|
||||
+ (void)showNotInstallPlatforms:(NSArray *)showPlatforms;
|
||||
|
||||
/**
|
||||
隐藏指定没有安装客户端的平台。
|
||||
|
||||
@param hiddenPlatforms 指定要隐藏的平台,传nil则隐藏所有没有安装客户端的平台
|
||||
|
||||
*/
|
||||
+ (void)hiddenNotInstallPlatforms:(NSArray *)hiddenPlatforms;
|
||||
|
||||
+ (UMSocialConfig *)shareInstance;
|
||||
|
||||
/** deprecated API, Use ''[UMSocialSinaHandler openSSOWithRedirectURL:@"http://sns.whalecloud.com/sina2/callback"];''
|
||||
|
||||
设置是否支持新浪微博SSO,默认不支持
|
||||
@param supportSinaSSO 设置是否支持新浪微博SSO
|
||||
@param appRedirectUrl 设置授权回调地址,此授权回调地址必须和你在新浪应用后台填写的回调地址一致,否则不能授权
|
||||
如果在新浪微博后台绑定我们的回调地址“http://sns.whalecloud.com/sina2/callback”,这里可以传nil
|
||||
|
||||
*/
|
||||
//+ (void)setSupportSinaSSO:(BOOL)supportSinaSSO appRedirectUrl:(NSString *)appRedirectUrl;
|
||||
|
||||
|
||||
/** deprecated API, Use ''[UMSocialQQHandler shareToQQWithAppId:@"100424468" url:@"http://www.umeng.com/social"];''
|
||||
|
||||
设置手机QQ的app_Id和微信图文分享用到的url地址
|
||||
|
||||
@param app_Id 手机QQ的AppId
|
||||
@param url 手机QQ图文分享web类型,用到的url地址,如果传nil,默认使用http://www.umeng.com/social
|
||||
@param classes 载入QQ互联 SDK,用到的两个类
|
||||
*/
|
||||
|
||||
//+ (void)setQQAppId:(NSString *)app_Id url:(NSString *)url importClasses:(NSArray *)classes;
|
||||
|
||||
|
||||
/**deprecated API, Use ''[UMSocialQQHandler setSupportQzoneSSO:YES];''
|
||||
设置支持Qzone的SSO授权
|
||||
|
||||
@param supportQzoneSSO Qzone支持SSO
|
||||
@param classes 载入QQ互联 SDK,用到的两个类
|
||||
*/
|
||||
|
||||
//+ (void)setSupportQzoneSSO:(BOOL)supportQzoneSSO importClasses:(NSArray *)classes;
|
||||
|
||||
|
||||
/**deprecated API
|
||||
设置是否使用QQ互联的SDK来分享
|
||||
|
||||
@param useQQSDK 是否使用QQ互联的SDK来分享
|
||||
@param classes 载入QQ互联 SDK,用到的两个类
|
||||
*/
|
||||
|
||||
//+ (void)setShareQzoneWithQQSDK:(BOOL)useQQSDK url:(NSString *)urlString importClasses:(NSArray *)classes;
|
||||
|
||||
@end
|
||||
@@ -0,0 +1,201 @@
|
||||
//
|
||||
// UMSocialUIController.h
|
||||
// SocialSDK
|
||||
//
|
||||
// Created by Jiahuan Ye on 12-9-12.
|
||||
// Copyright (c) umeng.com All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "UMSocialDataService.h"
|
||||
|
||||
#define kTagSocialIconActionSheet 1013
|
||||
#define kTagSocialShakeView 1014
|
||||
|
||||
@class UMSocialControllerService;
|
||||
|
||||
/**
|
||||
`UMSocialControllerService`对象用到的一些回调方法,包括分享完成、授权完成、评论完成等事件,和关闭授权页面、分享页面、评论页面等事件。
|
||||
*/
|
||||
@protocol UMSocialUIDelegate <NSObject>
|
||||
|
||||
@optional
|
||||
|
||||
/**
|
||||
自定义关闭授权页面事件
|
||||
|
||||
@param navigationCtroller 关闭当前页面的navigationCtroller对象
|
||||
|
||||
*/
|
||||
-(BOOL)closeOauthWebViewController:(UINavigationController *)navigationCtroller socialControllerService:(UMSocialControllerService *)socialControllerService;
|
||||
|
||||
/**
|
||||
关闭当前页面之后
|
||||
|
||||
@param fromViewControllerType 关闭的页面类型
|
||||
|
||||
*/
|
||||
-(void)didCloseUIViewController:(UMSViewControllerType)fromViewControllerType;
|
||||
|
||||
/**
|
||||
各个页面执行授权完成、分享完成、或者评论完成时的回调函数
|
||||
|
||||
@param response 返回`UMSocialResponseEntity`对象,`UMSocialResponseEntity`里面的viewControllerType属性可以获得页面类型
|
||||
*/
|
||||
-(void)didFinishGetUMSocialDataInViewController:(UMSocialResponseEntity *)response;
|
||||
|
||||
/**
|
||||
点击分享列表页面,之后的回调方法,你可以通过判断不同的分享平台,来设置分享内容。
|
||||
例如:
|
||||
|
||||
-(void)didSelectSocialPlatform:(NSString *)platformName withSocialData:(UMSocialData *)socialData
|
||||
{
|
||||
if (platformName == UMShareToSina) {
|
||||
socialData.shareText = @"分享到新浪微博的文字内容";
|
||||
}
|
||||
else{
|
||||
socialData.shareText = @"分享到其他平台的文字内容";
|
||||
}
|
||||
}
|
||||
|
||||
@param platformName 点击分享平台
|
||||
|
||||
@prarm socialData 分享内容
|
||||
*/
|
||||
-(void)didSelectSocialPlatform:(NSString *)platformName withSocialData:(UMSocialData *)socialData;
|
||||
|
||||
|
||||
/**
|
||||
配置点击分享列表后是否弹出分享内容编辑页面,再弹出分享,默认需要弹出分享编辑页面
|
||||
|
||||
@result 设置是否需要弹出分享内容编辑页面,默认需要
|
||||
|
||||
*/
|
||||
-(BOOL)isDirectShareInIconActionSheet;
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
用此类的方法可以得到分享的有关UI对象,例如分享列表、评论列表、分享编辑页、分享授权页、个人中心页面等。返回都是`UINavigationController`对象,建议把这个对象present到你要添加到的`UIViewController`上
|
||||
*/
|
||||
@interface UMSocialControllerService : NSObject
|
||||
|
||||
/**
|
||||
与`UMSocialControllerService`对象对应的`UMSocialData`对象,可以通过该对象设置分享内嵌文字、图片,获取分享数等属性
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialData *socialData;
|
||||
|
||||
/**
|
||||
用`UMSocialDataService`对象,可以调用发送微博、评论等数据级的方法
|
||||
*/
|
||||
@property (nonatomic, readonly) UMSocialDataService *socialDataService;
|
||||
|
||||
/**
|
||||
当前返回的`UINavigationController`对象
|
||||
*/
|
||||
@property (nonatomic, assign) UIViewController *currentViewController;
|
||||
|
||||
/**
|
||||
当前返回的`UIViewController`对象
|
||||
*/
|
||||
@property (nonatomic, assign) UINavigationController *currentNavigationController;
|
||||
|
||||
|
||||
/**
|
||||
当前`<UMSocialUIDelegate>`对象,此对象可以获取到授权完成,关闭页面等状态,详情看`UMSocialUIDelegate`的定义
|
||||
*/
|
||||
@property (nonatomic, assign) id <UMSocialUIDelegate> socialUIDelegate;
|
||||
|
||||
/**
|
||||
当前sns平台名
|
||||
*/
|
||||
@property (nonatomic, retain) NSString *currentSnsPlatformName;
|
||||
|
||||
/**
|
||||
下一个页面类型
|
||||
*/
|
||||
@property (nonatomic, assign) UMSViewControllerType nextViewController;
|
||||
|
||||
/**
|
||||
返回一个以[UMSocialData defaultData]来做初始化参数的`UMSocialControllerService`对象
|
||||
|
||||
@return `UMSocialControllerService`的默认初始化对象
|
||||
*/
|
||||
+(UMSocialControllerService *)defaultControllerService;
|
||||
|
||||
///---------------------------------------
|
||||
/// @name 初始化方法和设置
|
||||
///---------------------------------------
|
||||
|
||||
/**
|
||||
初始化一个`UMSocialControllerService`对象
|
||||
|
||||
@param socialData `UMSocialData`对象
|
||||
|
||||
@return 初始化对象
|
||||
*/
|
||||
- (id)initWithUMSocialData:(UMSocialData *)socialData;
|
||||
|
||||
/**
|
||||
设置分享内容和回调对象
|
||||
|
||||
@param shareText 分享内嵌文字
|
||||
|
||||
@param shareImage 分享内嵌图片,可以传入UIImage或者NSData类型
|
||||
|
||||
@param socialUIDelegate 分享回调对象
|
||||
*/
|
||||
- (void)setShareText:(NSString *)shareText shareImage:(id)shareImage
|
||||
socialUIDelegate:(id<UMSocialUIDelegate>)socialUIDelegate;
|
||||
|
||||
///---------------------------------------
|
||||
/// @name 获得评论列表、分享列表等UINavigationController
|
||||
///---------------------------------------
|
||||
|
||||
/**
|
||||
得到一个分享列表页面,该列表出现的分享列表可以通过实现`UMSocialConfig`的类方法来自定义
|
||||
|
||||
@return `UINavigationController`对象
|
||||
*/
|
||||
- (UINavigationController *)getSocialShareListController;
|
||||
|
||||
|
||||
/**
|
||||
分享编辑页面
|
||||
|
||||
@param platformType 要编辑的微博平台,并支持UMSocialSnsTypeEmail和UMSocialSnsTypeSms返回编辑Email页面和短信页面,不支持邮箱或者短信的设备分别返回nil
|
||||
|
||||
@return `UINavigationController`对象
|
||||
*/
|
||||
- (UINavigationController *)getSocialShareEditController:(NSString *)platformType;
|
||||
|
||||
/**
|
||||
授权页面,如果你要想得到授权完成之后的事件,你可以实现`UMSocialUIDelegate`里面的`-(void)didCloseUIViewController:(UMSViewControllerType)fromViewControllerType;`方法,当授权关闭页面会调用此方法。另外授权完成之后sdk会自动去取个人账户信息,你可以在回调函数里面去到刚刚授权的微博平台的账户信息。
|
||||
|
||||
@param shareToType 要授权的微博平台
|
||||
|
||||
@return `UINavigationController`对象
|
||||
*/
|
||||
- (UINavigationController *)getSocialOauthController:(NSString *)platformType;
|
||||
|
||||
/**
|
||||
获取用以sns各平台icon平铺来展示的分享列表页面对象
|
||||
|
||||
@param controller 弹出的分享列表页面,点击sns平台icon之后,出现的分享页面或者授权页面所在的UIViewController
|
||||
|
||||
@return 分享列表页面
|
||||
*/
|
||||
- (id)getSocialIconActionSheetInController:(UIViewController *)controller;
|
||||
|
||||
/**
|
||||
获取各种页面的`UIViewController`对象
|
||||
|
||||
@param viewControllerType 页面类型
|
||||
|
||||
@param snsName 编辑页面、授权页面等需要的平台名
|
||||
|
||||
@return 页面的`UIViewController`对象
|
||||
*/
|
||||
- (UIViewController *)getSocialViewController:(UMSViewControllerType)viewControllerType withSnsType:(NSString *)snsName;
|
||||
|
||||
@end
|
||||
@@ -0,0 +1,55 @@
|
||||
//
|
||||
// UMSocialControllerServiceComment.h
|
||||
// SocialSDK
|
||||
//
|
||||
// Created by yeahugo on 12-12-7.
|
||||
// Copyright (c) 2012年 Umeng. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "UMSocialControllerService.h"
|
||||
|
||||
/**
|
||||
用此类的方法可以得到分享的有关UI对象,例如分享列表、评论列表、分享编辑页、分享授权页、个人中心页面等。返回都是`UINavigationController`对象,建议把这个对象present到你要添加到的`UIViewController`上
|
||||
*/
|
||||
@interface UMSocialControllerServiceComment : UMSocialControllerService
|
||||
|
||||
/**
|
||||
返回一个以[UMSocialData defaultData]来做初始化参数的`UMSocialControllerServiceComment`对象
|
||||
|
||||
@return `UMSocialControllerServiceComment`的默认初始化对象
|
||||
*/
|
||||
+(UMSocialControllerServiceComment *)defaultControllerService;
|
||||
|
||||
/**
|
||||
评论列表页面,评论列表页面包括各评论详情、评论编辑
|
||||
|
||||
@return `UINavigationController`对象
|
||||
*/
|
||||
- (UINavigationController *)getSocialCommentListController;
|
||||
|
||||
|
||||
/**
|
||||
得到个人中心页面,该页面包括用户各个微博授权信息和选择的登录账号
|
||||
|
||||
@return `UINavigationController`对象
|
||||
*/
|
||||
- (UINavigationController *)getSocialAccountController;
|
||||
|
||||
|
||||
/**
|
||||
sns账号设置页面,该页面包括个人的各个微博授权信息
|
||||
|
||||
@return `UINavigationController`对象
|
||||
*/
|
||||
- (UINavigationController *)getSnsAccountController;
|
||||
|
||||
|
||||
/**
|
||||
登录页面,出现你配置出现的所有sns平台,授权之后设置为sdk的登录账号。使用评论功能时会取此登录账号的昵称和头像。
|
||||
|
||||
@return `UINavigationController`对象
|
||||
*/
|
||||
- (UINavigationController *)getSocialLoginController;
|
||||
|
||||
@end
|
||||
@@ -0,0 +1,147 @@
|
||||
//
|
||||
// UMSocialData.h
|
||||
// SocialSDK
|
||||
//
|
||||
// Created by Jiahuan Ye on 12-9-12.
|
||||
// Copyright (c) umeng.com All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "UMSocialSnsData.h"
|
||||
|
||||
/**
|
||||
一个`UMSocialData`对象标识一个分享资源,用一个*identifier*字符串作为标识,你可以为此对象设置分享内嵌文字、分享图片等,可以获取到对应的分享数、评论数。同时`UMSocialData`类方法用来设置appKey和打开log等全局设置。
|
||||
*/
|
||||
@interface UMSocialData : NSObject
|
||||
|
||||
|
||||
///---------------------------------------
|
||||
/// @name 对象属性
|
||||
///---------------------------------------
|
||||
|
||||
/**
|
||||
标识每个不同`UMSocialData`对象的字符串
|
||||
|
||||
*/
|
||||
@property (nonatomic, readonly) NSString *identifier;
|
||||
|
||||
/**
|
||||
报表title
|
||||
不同`UMSocialData`实例的title,在报表中可看到对应分享操作的title
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *title;
|
||||
|
||||
/**
|
||||
分享的内嵌文字
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString * shareText;
|
||||
|
||||
/**
|
||||
用于用户在评论并分享的时候,该字段内容会自动添加到评论的后面,分享到各个分享平台
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString * commentText;
|
||||
|
||||
/**
|
||||
分享的内嵌图片,可以传入`UIImage`或者`NSData`类型
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) id shareImage;
|
||||
|
||||
/**
|
||||
用于用户在评论并分享的时候,该字段内容会自动添加到评论中的图片,分享到各个分享平台
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UIImage * commentImage;
|
||||
|
||||
/**
|
||||
保存在本地记录是否喜欢
|
||||
|
||||
*/
|
||||
@property (nonatomic, readonly) BOOL isLike;
|
||||
|
||||
/**
|
||||
保存在本地的用户微博账户信息,key是微博名,value是自定义的`UMSocialResponseEntity`对象
|
||||
|
||||
*/
|
||||
@property (nonatomic, readonly) NSDictionary *socialAccount;
|
||||
|
||||
|
||||
/**
|
||||
分享到微博多媒体资源,包括指定url的图片、音乐、视频
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialUrlResource *urlResource;
|
||||
|
||||
/**
|
||||
分享到各个微博的扩展设置
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialExtConfig *extConfig;
|
||||
|
||||
///---------------------------------------
|
||||
/// @name 对所有对象都起作用的类方法
|
||||
///---------------------------------------
|
||||
|
||||
/**设置app的友盟appKey,此appKey从友盟网站获取
|
||||
|
||||
@param appKey 友盟appKey
|
||||
*/
|
||||
|
||||
+ (void)setAppKey:(NSString *)appKey;
|
||||
|
||||
|
||||
/**获取设置的友盟appKey
|
||||
|
||||
*/
|
||||
+ (NSString *)appKey;
|
||||
|
||||
/**
|
||||
设置是否打开log输出,默认不打开,如果打开的话可以看到此sdk网络或者其他操作,有利于调试
|
||||
|
||||
@param openLog 是否打开log输出
|
||||
|
||||
*/
|
||||
+ (void)openLog:(BOOL)openLog;
|
||||
|
||||
/**
|
||||
获取默认的`UMSocialData`对象,此对象的identifier为"UMSocialDefault"
|
||||
|
||||
*/
|
||||
+ (UMSocialData *)defaultData;
|
||||
|
||||
///---------------------------------------
|
||||
/// @name 对象方法
|
||||
///---------------------------------------
|
||||
|
||||
/**
|
||||
初始化一个`UMSocialData`对象
|
||||
|
||||
@param identifier 一个`UMSocialData`对象的标识符,相同标识符的`UMSocialData`拥有相同的属性
|
||||
|
||||
@return return 初始化的`UMSocialData`对象
|
||||
*/
|
||||
- (id)initWithIdentifier:(NSString *)identifier;
|
||||
|
||||
/**
|
||||
初始化一个`UMSocialData`对象
|
||||
|
||||
@param identifier 一个`UMSocialData`对象的标识符,相同标识符的`UMSocialData`拥有相同的属性
|
||||
|
||||
@param title 对每个对象的描述,在报表端显示分享、评论等操作对应的title
|
||||
|
||||
@return return 初始化的`UMSocialData`对象
|
||||
*/
|
||||
- (id)initWithIdentifier:(NSString *)identifier withTitle:(NSString *)title;
|
||||
|
||||
/**
|
||||
获得该对象保存在本地的分享数、评论数或者喜欢数
|
||||
|
||||
@param numberType 数目类型,分享、评论、喜欢分别为`UMSNumberShare`、`UMSNumberComment`、`UMSNumberLike`
|
||||
|
||||
@return 各种动作的数目
|
||||
*/
|
||||
- (NSInteger)getNumber:(UMSNumberType)numberType;
|
||||
@end
|
||||
@@ -0,0 +1,367 @@
|
||||
//
|
||||
// UMSocialDataAPI.h
|
||||
// SocialSDK
|
||||
//
|
||||
// Created by Jiahuan Ye on 12-9-13.
|
||||
// Copyright (c) umeng.com All rights reserved.
|
||||
//
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "UMSocialData.h"
|
||||
|
||||
/**
|
||||
网络请求结果状态码
|
||||
|
||||
*/
|
||||
typedef enum {
|
||||
UMSResponseCodeSuccess = 200, //成功
|
||||
UMSREsponseCodeTokenInvalid = 400, //授权用户token错误
|
||||
UMSResponseCodeBaned = 505, //用户被封禁
|
||||
UMSResponseCodeFaild = 510, //发送失败(由于内容不符合要求或者其他原因)
|
||||
UMSResponseCodeArgumentsError = 522, //参数错误,提供的参数不符合要求
|
||||
UMSResponseCodeEmptyContent = 5007, //发送内容为空
|
||||
UMSResponseCodeShareRepeated = 5016, //分享内容重复
|
||||
UMSResponseCodeGetNoUidFromOauth = 5020, //授权之后没有得到用户uid
|
||||
UMSResponseCodeAccessTokenExpired = 5027, //token过期
|
||||
UMSResponseCodeNetworkError = 5050, //网络错误
|
||||
UMSResponseCodeGetProfileFailed = 5051, //获取账户失败
|
||||
UMSResponseCodeCancel = 5052, //用户取消授权
|
||||
UMSResponseCodeNotLogin = 5053, //用户没有登录
|
||||
UMSResponseCodeNoApiAuthority = 100031 //QQ空间应用没有在QQ互联平台上申请上传图片到相册的权限
|
||||
} UMSResponseCode;
|
||||
|
||||
/**
|
||||
网络请求类型
|
||||
|
||||
*/
|
||||
typedef enum {
|
||||
UMSResponseAddComment = 0, //添加评论
|
||||
UMSResponseAddLike = 1, //添加喜欢
|
||||
UMSResponseGetCommentList = 2, //获取评论列表
|
||||
UMSResponseGetSocialData = 3, //获取social enitity信息
|
||||
UMSResponseShareToSNS = 4, //分享到一个微博平台
|
||||
UMSResponseShareToMutilSNS = 5, //分享到多个微博平台
|
||||
UMSResponseBinding = 6, //绑定一个账户作为登录账户
|
||||
UMSResponseUnBinding = 7, //解除绑定账户
|
||||
UMSResponseUnOauth = 8, //解除授权
|
||||
UMSResponseOauth = 9, //授权
|
||||
UMSResponseGetAccount = 10, //获取账户信息
|
||||
UMSResponseGetSnsInfo = 11, //获取sns详细信息
|
||||
UMSResponseGetFriends = 12, //获取朋友列表
|
||||
UMSResponseAddFollow = 13, //添加关注
|
||||
UMSResponseAddCustomAccount = 14, //添加自定义账户
|
||||
UMSResponseAddSnsAccount = 15, //添加已经授权的账户
|
||||
UMSResponseGetAppInfo = 16, //获取各个sns绑定app 信息
|
||||
UMSResponseIsTokenValid = 17, //获取各个微博平台的token是否有效
|
||||
UMSResponseAnalytics = 18,
|
||||
UMSResponseAddAppInfo = 19
|
||||
} UMSResponse;
|
||||
|
||||
/**
|
||||
页面类型
|
||||
|
||||
*/
|
||||
typedef enum{
|
||||
UMSViewControllerCommentList, //评论列表
|
||||
UMSViewControllerCommentEdit, //评论编辑页
|
||||
UMSViewControllerShareList, //分享列表页,包含sdk支持的所有sns平台
|
||||
UMSViewControllerShareEdit, //分享编辑页
|
||||
UMSViewControllerAccount, //个人中心页面
|
||||
UMSViewControllerSnsAccount, //sns账号设置页面
|
||||
UMSViewControllerLoginAccount, //登录账号页面
|
||||
UMSViewControllerOauth, //oath授权页面
|
||||
UMSViewControllerLogin, //登录页面,登录的可选平台为sdk所支持的sns平台
|
||||
UMSViewControllerFriendList, //好友列表页面
|
||||
UMSViewControllerActionSheet //icon平铺排列的分享列表页面
|
||||
}UMSViewControllerType;
|
||||
|
||||
|
||||
/**
|
||||
返回的状态对象,可以通过此对象获取返回类型、返回结果、返回数据等。
|
||||
|
||||
*/
|
||||
@interface UMSocialResponseEntity : NSObject
|
||||
|
||||
/**
|
||||
代表发送结果,UMSResponseCodeSuccess代表成功,参看上面的定义
|
||||
|
||||
*/
|
||||
@property (nonatomic, assign) UMSResponseCode responseCode;
|
||||
|
||||
/**
|
||||
数据类型
|
||||
|
||||
*/
|
||||
@property (nonatomic, assign) UMSResponse responseType;
|
||||
|
||||
/**
|
||||
数据返回`UMViewControllerType`类型,如果是UI的回调函数,表示回调函数所在的页面
|
||||
|
||||
*/
|
||||
@property (nonatomic, assign) UMSViewControllerType viewControllerType;
|
||||
|
||||
/**
|
||||
错误原因
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) NSString *message;
|
||||
|
||||
/**
|
||||
返回数据
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) NSDictionary *data;
|
||||
|
||||
/**
|
||||
客户端发送出现的错误
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) NSError *error;
|
||||
|
||||
/**
|
||||
把各属性编码成NSString
|
||||
|
||||
@return 一个`NSString`对象
|
||||
*/
|
||||
-(NSString *)description;
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
进行网络请求之后的回调函数,你可以通过返回的`UMSocialResponseEntity`对象的`responseType`类型来对不同的请求来做处理。
|
||||
|
||||
@see `UMSocialResponseEntity.h`
|
||||
|
||||
*/
|
||||
@protocol UMSocialDataDelegate <NSObject>
|
||||
|
||||
/**
|
||||
进行网络请求之后得到的回调方法
|
||||
|
||||
@param response 回调返回一个`UMSResponseEntity`对象
|
||||
|
||||
*/
|
||||
-(void)didFinishGetUMSocialDataResponse:(UMSocialResponseEntity *)response;
|
||||
|
||||
@end
|
||||
|
||||
typedef void (^UMSocialDataServiceCompletion)(UMSocialResponseEntity * response);
|
||||
|
||||
@class CLLocation;
|
||||
|
||||
/**
|
||||
底层数据接口对象,用一个`UMSocialData`来初始化,此对象的方法有在直接发送微博、发送评论等。可以通过`socialData`属性来获取分享数、评论数,设置分享内嵌文字等。
|
||||
*/
|
||||
@interface UMSocialDataService : NSObject
|
||||
|
||||
///---------------------------------------
|
||||
/// @name 属性
|
||||
///---------------------------------------
|
||||
|
||||
@property (nonatomic, copy) UMSocialDataServiceCompletion completion;
|
||||
|
||||
/**
|
||||
通过`UMSocialData`对象,可以设置分享文字、图片,并获取到分享数、微博账号等属性
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialData *socialData;
|
||||
|
||||
/**
|
||||
设置实现了`<UMSocialDataDelegate>`的对象
|
||||
*/
|
||||
@property (nonatomic, readonly) id <UMSocialDataDelegate> socialDataDelegate;
|
||||
|
||||
///---------------------------------------
|
||||
/// @name 对象初始化和设置方法
|
||||
///---------------------------------------
|
||||
|
||||
|
||||
/**
|
||||
返回一个以[UMSocialData defaultData]来做初始化参数的`UMSocialDataService`对象
|
||||
|
||||
@return `UMSocialDataService`的默认初始化对象
|
||||
*/
|
||||
+(UMSocialDataService *)defaultDataService;
|
||||
|
||||
/**
|
||||
初始化一个`UMSocialDataService`对象
|
||||
|
||||
@param socialData 一个`UMSocialData`对象
|
||||
|
||||
@return 初始化对象
|
||||
*/
|
||||
- (id)initWithUMSocialData:(UMSocialData *)socialData;
|
||||
|
||||
/*!
|
||||
设置实现了`<UMSocialDataDelegate>`的对象, 如果在此视图设置了delegate,离开此视图的时候要设置为nil
|
||||
|
||||
@param delegate 实现了`<UMSocialDataDelegate>`的对象
|
||||
|
||||
*/
|
||||
- (void)setUMSocialDelegate:(id <UMSocialDataDelegate>)delegate;
|
||||
|
||||
/**
|
||||
获取微博分享数、评论数等数据
|
||||
|
||||
@param completion 获取到数据之后执行的block对象,返回数据放在completion.data
|
||||
|
||||
*/
|
||||
-(void)requestSocialDataWithCompletion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
Deprecated APIs
|
||||
发送微博内容到多个微博平台
|
||||
|
||||
@param platformTypes 分享到的平台,数组的元素是`UMSocialSnsPlatformManager.h`定义的平台名的常量字符串,例如`UMShareToSina`,`UMShareToTencent`等。
|
||||
@param content 分享的文字内容
|
||||
@param image 分享的图片
|
||||
@param location 分享的地理位置信息
|
||||
@param urlResource 图片、音乐、视频等url资源
|
||||
@param completion 发送完成执行的block对象
|
||||
|
||||
*/
|
||||
- (void)postSNSWithTypes:(NSArray *)platformTypes
|
||||
content:(NSString *)content
|
||||
image:(id)image
|
||||
location:(CLLocation *)location
|
||||
urlResource:(UMSocialUrlResource *)urlResource
|
||||
completion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
发送微博内容到多个微博平台
|
||||
|
||||
@param platformTypes 分享到的平台,数组的元素是`UMSocialSnsPlatformManager.h`定义的平台名的常量字符串,例如`UMShareToSina`,`UMShareToTencent`等。
|
||||
@param content 分享的文字内容
|
||||
@param image 分享的图片,可以传入UIImage类型或者NSData类型
|
||||
@param location 分享的地理位置信息
|
||||
@param urlResource 图片、音乐、视频等url资源
|
||||
@param completion 发送完成执行的block对象
|
||||
@param presentedController 如果发送的平台微博只有一个并且没有授权,传入要授权的viewController,将弹出授权页面,进行授权。可以传nil,将不进行授权。
|
||||
|
||||
*/
|
||||
- (void)postSNSWithTypes:(NSArray *)platformTypes
|
||||
content:(NSString *)content
|
||||
image:(id)image
|
||||
location:(CLLocation *)location
|
||||
urlResource:(UMSocialUrlResource *)urlResource
|
||||
presentedController:(UIViewController *)presentedController
|
||||
completion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
如果当前`UMSocialData`没有喜欢的话,发送喜欢,否则取消喜欢
|
||||
|
||||
@param completion 获取到数据之后执行的block对象
|
||||
|
||||
*/
|
||||
- (void)postAddLikeOrCancelWithCompletion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
发送评论
|
||||
|
||||
@param content 评论的文字内容
|
||||
@param completion 获取到数据之后执行的block对象
|
||||
|
||||
*/
|
||||
- (void)postCommentWithContent:(NSString *)content completion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
发送评论
|
||||
|
||||
@param content 评论的文字内容
|
||||
@param image 评论并发送到微博的图片
|
||||
@param templateText 评论并发送到微博跟在微博正文后面用//分隔的文字
|
||||
@param location 评论的地理位置信息
|
||||
@param shareToSNS 评论并分享到微博平台,key为微博名,定义在`UMSocialSnsPlatformManager.h`中的`UMShareToSina`等,值为相应的usid
|
||||
@param completion 获取到数据之后执行的block对象
|
||||
|
||||
*/
|
||||
-(void)postCommentWithContent:(NSString *)content
|
||||
image:(UIImage *)image
|
||||
templateText:(NSString *)templateText
|
||||
location:(CLLocation *)location
|
||||
shareToSNSWithUsid:(NSDictionary *)shareToSNS
|
||||
completion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
获取评论
|
||||
|
||||
@param lastCommentTime 如果要获取最新的评论数,设置为-1,如果获取指定评论,传入评论在这之前的时间戳
|
||||
@param completion 获取到数据之后执行的block对象,此block对象的形参内带有请求的评论数据
|
||||
|
||||
*/
|
||||
- (void)requestCommentList:(long long)lastCommentTime completion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
///---------------------------------------
|
||||
/// @name 用户账户信息相关网络请求
|
||||
///---------------------------------------
|
||||
|
||||
/**
|
||||
请求获取用户微博账号的数据,获取到的用户数据在回调函数获得,也可以通过已经保存在本地并且更新的`socialData`属性的`socialAccount`属性来获得
|
||||
@param completion 获取到数据之后执行的block对象,此block对象的形参带啊有请求的用户账号数据
|
||||
|
||||
*/
|
||||
- (void)requestSocialAccountWithCompletion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
请求解除授权
|
||||
|
||||
@param platformType 要解除授权的微博平台
|
||||
@param completion 请求之后执行的block对象
|
||||
|
||||
*/
|
||||
- (void)requestUnOauthWithType:(NSString *)platformType completion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
请求绑定账号
|
||||
|
||||
@param platformType 要绑定账号的微博平台
|
||||
@param completion 请求之后执行的block对象
|
||||
|
||||
*/
|
||||
- (void)requestBindToSnsWithType:(NSString *)platformType completion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
请求解除绑定账号
|
||||
@param completion 请求之后执行的block对象
|
||||
|
||||
*/
|
||||
- (void)requestUnBindToSnsWithCompletion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
请求获取用户微博账号的详细数据,获取返回数据和其他方法一样,在<UMSocialDataDelegate>中的`didFinishGetUMSocialDataResponse`返回的`UMSocialResponseEntity`对象,数据部分是`data`属性,为`NSDictionary`类型
|
||||
|
||||
@param platformType 要获取微博信息的微博平台
|
||||
@param completion 请求之后执行的block对象
|
||||
|
||||
*/
|
||||
- (void)requestSnsInformation:(NSString *)platformType completion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
请求获取用户微博账号的朋友列表,获取返回数据和其他方法一样,在<UMSocialDataDelegate>中的`didFinishGetUMSocialDataResponse`返回的`UMSocialResponseEntity`对象,数据部分是`data`属性,为`NSDictionary`类型
|
||||
|
||||
@param platformType 要获取微博信息的微博平台
|
||||
@param completion 请求之后执行的block对象,block对象的形参内带有请求的好友数据
|
||||
|
||||
*/
|
||||
- (void)requestSnsFriends:(NSString *)platformType completion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
请求添加关注
|
||||
|
||||
@param platformType 要添加关注的微博平台,目前添加关注功能只支持新浪微博和腾讯微博
|
||||
|
||||
@param usids 被关注的usid号
|
||||
|
||||
@param completion 请求之后执行的block对象
|
||||
|
||||
*/
|
||||
- (void)requestAddFollow:(NSString *)platformType followedUsid:(NSArray *)usids completion:(UMSocialDataServiceCompletion)completion;
|
||||
|
||||
/**
|
||||
检测用户在各个开放平台上的token是否有效,失效的情况包括token过期,用户手动解除授权,用户修改密码等情况
|
||||
|
||||
@param snsArray 微博平台数组,只支持传入支持授权的平台,包括新浪微博、腾讯微博、QQ空间等。不支持微信等平台。
|
||||
|
||||
@return completion 返回结果
|
||||
*/
|
||||
- (void)requestIsTokenValid:(NSArray *)snsArray completion:(UMSocialDataServiceCompletion)completion;
|
||||
@end
|
||||
|
||||
@@ -0,0 +1,608 @@
|
||||
//
|
||||
// UMSocialSnsData.h
|
||||
// SocialSDK
|
||||
//
|
||||
// Created by yeahugo on 13-11-25.
|
||||
// Copyright (c) 2013年 Umeng. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
typedef enum{
|
||||
UMSNumberLike=0, //喜欢
|
||||
UMSNumberShare, //分享
|
||||
UMSNumberComment //评论
|
||||
}UMSNumberType;
|
||||
|
||||
typedef enum {
|
||||
UMSocialUrlResourceTypeDefault, //无
|
||||
UMSocialUrlResourceTypeImage, //图片
|
||||
UMSocialUrlResourceTypeVideo, //视频
|
||||
UMSocialUrlResourceTypeMusic //音乐
|
||||
}UMSocialUrlResourceType;
|
||||
|
||||
/**
|
||||
分享到微博的多媒体资源,包括指定url的图片、音乐、视频
|
||||
*/
|
||||
@interface UMSocialUrlResource : NSObject
|
||||
|
||||
/**
|
||||
url地址
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *url;
|
||||
|
||||
|
||||
/**
|
||||
资源类型,图片(UMSocialUrlResourceTypeImage)、视频(UMSocialUrlResourceTypeVideo),音乐(UMSocialUrlResourceTypeMusic)
|
||||
|
||||
*/
|
||||
@property (nonatomic, assign) UMSocialUrlResourceType resourceType;
|
||||
|
||||
/**
|
||||
设置url资源类型和url地址
|
||||
|
||||
@param resourceType 多媒体资源类型,图片、音乐或者视频
|
||||
@param urlString url字符串
|
||||
|
||||
*/
|
||||
-(void)setResourceType:(UMSocialUrlResourceType)resourceType url:(NSString *)url;
|
||||
|
||||
/**
|
||||
初始化对象,指定一种资源和资源URL
|
||||
|
||||
@param resourceType 多媒体资源类型,图片、音乐或者视频
|
||||
@param urlString url字符串
|
||||
|
||||
*/
|
||||
-(id)initWithSnsResourceType:(UMSocialUrlResourceType)resourceType url:(NSString *)url;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
微信内容类型
|
||||
*/
|
||||
typedef enum{
|
||||
UMSocialWXMessageTypeNone,
|
||||
UMSocialWXMessageTypeText, //微信消息文本类型
|
||||
UMSocialWXMessageTypeImage, //微信消息图片类型
|
||||
UMSocialWXMessageTypeApp, //微信消息应用类型
|
||||
UMSocialWXMessageTypeWeb, //微信消息网页类型
|
||||
UMSocialWXMessageTypeMusic, //微信消息音乐类型
|
||||
UMSocialWXMessageTypeVideo, //微信消息视频类型
|
||||
UMSocialWXMessageTypeEmotion, //微信消息表情类型
|
||||
UMSocialWXMessageTypeOther //微信消息其他多媒体类型
|
||||
}UMSocialWXMessageType;
|
||||
|
||||
/**
|
||||
易信内容类型
|
||||
*/
|
||||
typedef enum{
|
||||
UMSocialYXMessageTypeNone,
|
||||
UMSocialYXMessageTypeText, //微信消息文本类型
|
||||
UMSocialYXMessageTypeImage, //微信消息图片类型
|
||||
UMSocialYXMessageTypeApp, //微信消息应用类型
|
||||
UMSocialYXMessageTypeWeb, //微信消息网页类型
|
||||
UMSocialYXMessageTypeMusic, //微信消息音乐类型
|
||||
UMSocialYXMessageTypeVideo, //微信消息视频类型
|
||||
}UMSocialYXMessageType;
|
||||
|
||||
/**
|
||||
QQ消息类型
|
||||
*/
|
||||
typedef enum {
|
||||
UMSocialQQMessageTypeDefault, //非纯图片QQ消息
|
||||
UMSocialQQMessageTypeImage //纯图片QQ消息
|
||||
}UMSocialQQMessageType;
|
||||
|
||||
///---------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
设置分平台对应内容的基类
|
||||
|
||||
*/
|
||||
@interface UMSocialSnsData : NSObject
|
||||
|
||||
/**
|
||||
平台名
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *snsName;
|
||||
|
||||
/**
|
||||
分享文字
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *shareText;
|
||||
|
||||
/**
|
||||
分享图片
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) id shareImage;
|
||||
|
||||
/**
|
||||
url资源类型
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialUrlResource *urlResource;
|
||||
|
||||
@end
|
||||
|
||||
///---------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
分享到新浪微博数据
|
||||
|
||||
*/
|
||||
@interface UMSocialSinaData : UMSocialSnsData
|
||||
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
分享到腾讯微博数据
|
||||
|
||||
*/
|
||||
@interface UMSocialTencentData : UMSocialSnsData
|
||||
|
||||
/**
|
||||
如果传入音乐的话,腾讯微博可以指定音乐标题
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *title;
|
||||
|
||||
/**
|
||||
如果传入音乐的话,腾讯微博可以指定音乐作者
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *author;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
分享到QQ空间数据,分享到QQ空间不支持纯图片的消息格式
|
||||
|
||||
*/
|
||||
@interface UMSocialQzoneData : UMSocialSnsData
|
||||
|
||||
/**
|
||||
分享内容标题
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *title;
|
||||
|
||||
/**
|
||||
应用链接地址
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *url;
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
分享到QQ好友
|
||||
|
||||
*/
|
||||
@interface UMSocialQQData : UMSocialSnsData
|
||||
|
||||
/**
|
||||
分享到QQ好友的网页消息url
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *url;
|
||||
|
||||
/**
|
||||
分享到QQ好友的网页消息标题
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *title;
|
||||
|
||||
/**
|
||||
分享到QQ好友的消息类型
|
||||
|
||||
*/
|
||||
@property (nonatomic, assign) UMSocialQQMessageType qqMessageType;
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
分享到微信好友
|
||||
|
||||
*/
|
||||
@interface UMSocialWechatSessionData : UMSocialSnsData
|
||||
|
||||
/**
|
||||
图文分享标题
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString * title;
|
||||
|
||||
/**
|
||||
微信消息类型,包括'UMSocialWXMessageTypeText'文字,'UMSocialWXMessageTypeImage'图片,'UMSocialWXMessageTypeApp'应用类型
|
||||
|
||||
*/
|
||||
@property (nonatomic, assign) UMSocialWXMessageType wxMessageType;
|
||||
|
||||
/**
|
||||
微信网页消息url
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString * url;
|
||||
|
||||
/** App文件数据,该数据发送给微信好友,微信好友需要点击后下载数据,微信终端会回传给第三方程序处理
|
||||
* @attention 大小不能超过10M
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) NSData *fileData;
|
||||
|
||||
/** 第三方程序自定义简单数据,微信终端会回传给第三方程序处理
|
||||
* @attention 长度不能超过2K
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *extInfo;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
分享到微信朋友圈
|
||||
|
||||
*/
|
||||
@interface UMSocialWechatTimelineData : UMSocialSnsData
|
||||
|
||||
/**
|
||||
图文分享标题
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString * title;
|
||||
|
||||
/** App文件数据,该数据发送给微信好友,微信好友需要点击后下载数据,微信终端会回传给第三方程序处理
|
||||
* @attention 大小不能超过10M
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) NSData *fileData;
|
||||
|
||||
/**
|
||||
微信消息类型,包括'UMSocialWXMessageTypeText'文字,'UMSocialWXMessageTypeImage'图片,'UMSocialWXMessageTypeApp'应用类型
|
||||
|
||||
*/
|
||||
@property (nonatomic, assign) UMSocialWXMessageType wxMessageType;
|
||||
|
||||
/** 第三方程序自定义简单数据,微信终端会回传给第三方程序处理
|
||||
* @attention 长度不能超过2K
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *extInfo;
|
||||
|
||||
/**
|
||||
微信网页消息url
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString * url;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
分享到微信收藏
|
||||
|
||||
*/
|
||||
@interface UMSocialWechatFavorite : UMSocialSnsData
|
||||
|
||||
/**
|
||||
图文分享标题
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString * title;
|
||||
|
||||
/** App文件数据,该数据发送给微信好友,微信好友需要点击后下载数据,微信终端会回传给第三方程序处理
|
||||
* @attention 大小不能超过10M
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) NSData *fileData;
|
||||
|
||||
/**
|
||||
微信消息类型,包括'UMSocialWXMessageTypeText'文字,'UMSocialWXMessageTypeImage'图片,'UMSocialWXMessageTypeApp'应用类型
|
||||
|
||||
*/
|
||||
@property (nonatomic, assign) UMSocialWXMessageType wxMessageType;
|
||||
|
||||
/** 第三方程序自定义简单数据,微信终端会回传给第三方程序处理
|
||||
* @attention 长度不能超过2K
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *extInfo;
|
||||
|
||||
/**
|
||||
微信网页消息url
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString * url;
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
分享到人人网数据
|
||||
|
||||
*/
|
||||
@interface UMSocialRenrenData : UMSocialSnsData
|
||||
|
||||
/**
|
||||
分享内容链接地址
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *url;
|
||||
|
||||
/**
|
||||
应用名称
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *appName;
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
分享到豆瓣
|
||||
*/
|
||||
@interface UMSocialDoubanData : UMSocialSnsData
|
||||
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
分享到邮箱
|
||||
*/
|
||||
@interface UMSocialEmailData : UMSocialSnsData
|
||||
|
||||
/**
|
||||
邮件标题
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString * title;
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
分享到短信
|
||||
*/
|
||||
@interface UMSocialSmsData : UMSocialSnsData
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
分享到Facebook
|
||||
*/
|
||||
@interface UMSocialFacebookData : UMSocialSnsData
|
||||
|
||||
/**
|
||||
分享标题
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *title;
|
||||
|
||||
/**
|
||||
分享URL地址
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *url;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
/**
|
||||
分享到易信好友
|
||||
*/
|
||||
@interface UMSocialYXSessionData : UMSocialSnsData
|
||||
|
||||
/**
|
||||
易信消息类型
|
||||
*/
|
||||
@property (nonatomic, assign) UMSocialYXMessageType yxMessageType;
|
||||
|
||||
/**
|
||||
分享网页消息的链接地址
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *url;
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
分享到易信朋友圈
|
||||
*/
|
||||
@interface UMSocialYXTimelineData : UMSocialSnsData
|
||||
|
||||
/**
|
||||
易信消息类型
|
||||
*/
|
||||
@property (nonatomic, assign) UMSocialYXMessageType yxMessageType;
|
||||
|
||||
/**
|
||||
分享网页消息的链接地址
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *url;
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
分享到来往好友
|
||||
*/
|
||||
@interface UMSocialLWSessionData : UMSocialSnsData
|
||||
|
||||
/**
|
||||
分享网页消息的链接地址
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *url;
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
分享到来往好友
|
||||
*/
|
||||
@interface UMSocialLWTimelineData : UMSocialSnsData
|
||||
|
||||
/**
|
||||
分享网页消息的链接地址
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *url;
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
分享到Instagram
|
||||
*/
|
||||
@interface UMSocialInstagramData : UMSocialSnsData
|
||||
|
||||
@end
|
||||
|
||||
/**
|
||||
分享到Twitter
|
||||
*/
|
||||
@interface UMSocialTwitterData : UMSocialSnsData
|
||||
|
||||
@end
|
||||
|
||||
|
||||
|
||||
///---------------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
分享到各个平台的扩展设置
|
||||
|
||||
*/
|
||||
@interface UMSocialExtConfig : NSObject
|
||||
|
||||
/**
|
||||
以各个分享平台名为key,各个品台data为value
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) NSDictionary *snsDataDictionary;
|
||||
|
||||
/**
|
||||
分享到新浪微博内容
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialSinaData *sinaData;
|
||||
|
||||
/**
|
||||
分享到腾讯微博内容
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialTencentData *tencentData;
|
||||
|
||||
/**
|
||||
分享到微信好友内容
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialWechatSessionData *wechatSessionData;
|
||||
|
||||
/**
|
||||
分享到微信朋友圈内容
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialWechatTimelineData *wechatTimelineData;
|
||||
|
||||
/**
|
||||
微信收藏
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialWechatFavorite * wechatFavoriteData;
|
||||
|
||||
/**
|
||||
分享到QQ内容
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialQQData *qqData;
|
||||
|
||||
/**
|
||||
分享到Qzone内容
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialQzoneData * qzoneData;
|
||||
|
||||
/**
|
||||
分享到人人网内容
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialRenrenData * renrenData;
|
||||
|
||||
/**
|
||||
分享到豆瓣内容
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialDoubanData * doubanData;
|
||||
|
||||
/**
|
||||
分享到邮箱内容
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialEmailData *emailData;
|
||||
|
||||
|
||||
/**
|
||||
分享到短信内容
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialSmsData *smsData;
|
||||
|
||||
/**
|
||||
Facebook内容
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialFacebookData * facebookData;
|
||||
|
||||
/**
|
||||
Twitter内容
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialTwitterData *twitterData;
|
||||
|
||||
/**
|
||||
易信好友
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialYXSessionData * yxsessionData;
|
||||
|
||||
/**
|
||||
易信朋友圈
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialYXTimelineData *yxtimelineData;
|
||||
|
||||
/**
|
||||
来往好友
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialLWSessionData * lwsessionData;
|
||||
|
||||
/**
|
||||
来往朋友圈
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialLWTimelineData * lwtimelineData;
|
||||
|
||||
/**
|
||||
instagram
|
||||
*/
|
||||
@property (nonatomic, retain) UMSocialInstagramData * instagramData;
|
||||
|
||||
/**
|
||||
标题,用于指定微信分享标题,qzone分享的标题和邮件分享的标题。
|
||||
@attention Deprecated
|
||||
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *title;
|
||||
|
||||
|
||||
/**
|
||||
分享到微信的消息类型,分别有文字类型,图片类型,app类型(文字和图片都有,点击可以返回app或者到指定url,不过不能全部显示所有文字内容)
|
||||
@attention Deprecated
|
||||
|
||||
*/
|
||||
@property (nonatomic, assign) UMSocialWXMessageType wxMessageType;
|
||||
|
||||
|
||||
/**
|
||||
微信多媒体资源的分享,详细定义见`WXApiObject.h`
|
||||
@attention Deprecated
|
||||
|
||||
*/
|
||||
@property (nonatomic, retain) id wxMediaObject;
|
||||
|
||||
|
||||
@end
|
||||
@@ -0,0 +1,309 @@
|
||||
//
|
||||
// UMSocialSnsPlatformManager.h
|
||||
// SocialSDK
|
||||
//
|
||||
// Created by yeahugo on 13-1-15.
|
||||
// Copyright (c) 2013年 Umeng. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "UMSocialControllerService.h"
|
||||
|
||||
/**
|
||||
新浪微博
|
||||
*/
|
||||
extern NSString *const UMShareToSina;
|
||||
|
||||
/**
|
||||
腾讯微博
|
||||
*/
|
||||
extern NSString *const UMShareToTencent;
|
||||
|
||||
/**
|
||||
人人网
|
||||
*/
|
||||
extern NSString *const UMShareToRenren;
|
||||
|
||||
/**
|
||||
豆瓣
|
||||
*/
|
||||
extern NSString *const UMShareToDouban;
|
||||
|
||||
/**
|
||||
QQ空间
|
||||
*/
|
||||
extern NSString *const UMShareToQzone;
|
||||
|
||||
/**
|
||||
邮箱
|
||||
*/
|
||||
extern NSString *const UMShareToEmail;
|
||||
|
||||
/**
|
||||
短信
|
||||
*/
|
||||
extern NSString *const UMShareToSms;
|
||||
|
||||
/**
|
||||
微信好友
|
||||
*/
|
||||
extern NSString *const UMShareToWechatSession;
|
||||
|
||||
/**
|
||||
微信朋友圈
|
||||
*/
|
||||
extern NSString *const UMShareToWechatTimeline;
|
||||
|
||||
/**
|
||||
微信收藏
|
||||
*/
|
||||
extern NSString *const UMShareToWechatFavorite;
|
||||
|
||||
/**
|
||||
手机QQ
|
||||
*/
|
||||
extern NSString *const UMShareToQQ;
|
||||
|
||||
/**
|
||||
Facebook
|
||||
*/
|
||||
extern NSString *const UMShareToFacebook;
|
||||
|
||||
/**
|
||||
Twitter
|
||||
*/
|
||||
extern NSString *const UMShareToTwitter;
|
||||
|
||||
|
||||
/**
|
||||
易信好友
|
||||
*/
|
||||
extern NSString *const UMShareToYXSession;
|
||||
|
||||
/**
|
||||
易信朋友圈
|
||||
*/
|
||||
extern NSString *const UMShareToYXTimeline;
|
||||
|
||||
/**
|
||||
来往好友
|
||||
*/
|
||||
extern NSString *const UMShareToLWSession;
|
||||
|
||||
/**
|
||||
来往朋友圈
|
||||
*/
|
||||
extern NSString *const UMShareToLWTimeline;
|
||||
|
||||
/**
|
||||
分享到Instragram
|
||||
*/
|
||||
extern NSString *const UMShareToInstagram;
|
||||
|
||||
/**
|
||||
分享到Whatsapp
|
||||
*/
|
||||
extern NSString *const UMShareToWhatsapp;
|
||||
|
||||
/**
|
||||
分享到Line
|
||||
*/
|
||||
extern NSString *const UMShareToLine;
|
||||
|
||||
/**
|
||||
分享到Tumblr
|
||||
*/
|
||||
extern NSString *const UMShareToTumblr;
|
||||
|
||||
/**
|
||||
分享到Pinterest
|
||||
*/
|
||||
extern NSString *const UMShareToPinterest;
|
||||
|
||||
/**
|
||||
分享到KakaoTalk
|
||||
*/
|
||||
extern NSString *const UMShareToKakaoTalk;
|
||||
|
||||
/**
|
||||
分享到Flickr
|
||||
*/
|
||||
extern NSString *const UMShareToFlickr;
|
||||
|
||||
/**
|
||||
分享平台
|
||||
|
||||
*/
|
||||
typedef enum {
|
||||
UMSocialSnsTypeNone = 0,
|
||||
UMSocialSnsTypeQzone = 10,
|
||||
UMSocialSnsTypeSina, //sina weibo
|
||||
UMSocialSnsTypeTenc, //tencent weibo
|
||||
UMSocialSnsTypeRenr, //renren
|
||||
UMSocialSnsTypeDouban, //douban
|
||||
UMSocialSnsTypeWechatSession,
|
||||
UMSocialSnsTypeWechatTimeline,
|
||||
UMSocialSnsTypeWechatFavorite,
|
||||
UMSocialSnsTypeEmail,
|
||||
UMSocialSnsTypeSms,
|
||||
UMSocialSnsTypeMobileQQ,
|
||||
UMSocialSnsTypeFacebook,
|
||||
UMSocialSnsTypeTwitter,
|
||||
UMSocialSnsTypeYiXinSession,
|
||||
UMSocialSnsTypeYiXinTimeline,
|
||||
UMSocialSnsTypeLaiWangSession,
|
||||
UMSocialSnsTypeLaiWangTimeline,
|
||||
UMSocialSnsTypeInstagram,
|
||||
UMSocialSnsTypeWhatsApp,
|
||||
UMSocialSnsTypeLine,
|
||||
UMSocialSnsTypeTumblr,
|
||||
UMSocialSnsTypeKakaoTalk,
|
||||
UMSocialSnsTypeFlickr,
|
||||
UMSocialSnsTypePinterest,
|
||||
UMSocialSnsTypeNew
|
||||
} UMSocialSnsType;
|
||||
|
||||
|
||||
@class UMSocialControllerService;
|
||||
|
||||
/** 定义响应点击平台后的block对象
|
||||
|
||||
@param presentingController 点击后弹出的分享页面或者授权页面所在的UIViewController对象
|
||||
@param socialControllerService 可以用此对象的socialControllerService.socialData可以获取分享内嵌文字、内嵌图片,分享次数等
|
||||
@param isPresentInController 如果YES代表弹出(present)到当前UIViewController,否则push到UIViewController的navigationController
|
||||
|
||||
*/
|
||||
typedef void (^UMSocialSnsPlatformClickHandler)(UIViewController *presentingController, UMSocialControllerService * socialControllerService, BOOL isPresentInController);
|
||||
|
||||
/** 定义响应点击各平台授权登录后的block对象
|
||||
|
||||
@param presentingController 点击后弹出的分享页面或者授权页面所在的UIViewController对象
|
||||
@param socialControllerService 可以用此对象的socialControllerService.socialData可以获取分享内嵌文字、内嵌图片,分享次数等
|
||||
@param isPresentInController 如果YES代表弹出(present)到当前UIViewController,否则push到UIViewController的navigationController
|
||||
@param completion 授权完成之后的回调对象,返回的response参数表示成功与否和拿到的授权信息
|
||||
|
||||
*/
|
||||
typedef void (^UMSocialSnsPlatformLoginHandler)(UIViewController *presentingController, UMSocialControllerService * socialControllerService, BOOL isPresentInController, UMSocialDataServiceCompletion completion);
|
||||
|
||||
/**
|
||||
Sns平台类,用`platformName`作为标识,指定显示名称、显示的图片,点击之后的响应。
|
||||
*/
|
||||
@interface UMSocialSnsPlatform : NSObject
|
||||
|
||||
///---------------------------------------
|
||||
/// @name 平台属性
|
||||
///---------------------------------------
|
||||
|
||||
/**
|
||||
平台标示符
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *platformName;
|
||||
|
||||
/**
|
||||
显示名称
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *displayName;
|
||||
|
||||
/**
|
||||
登录名称
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *loginName;
|
||||
|
||||
/**
|
||||
分享类型
|
||||
*/
|
||||
@property (nonatomic, assign) UMSocialSnsType shareToType;
|
||||
|
||||
/**
|
||||
大图片的文件名,用于`UMSocialIconActionSheet`
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *bigImageName;
|
||||
|
||||
/**
|
||||
小图片的文件名,用于分享列表、登录、个人中心、评论编辑页面等
|
||||
*/
|
||||
@property (nonatomic, copy) NSString *smallImageName;
|
||||
|
||||
/**
|
||||
无色的小图片文件名,用于评论编辑页面显示没有授权状态
|
||||
*/
|
||||
@property (nonatomic ,copy) NSString *smallImageOffName;
|
||||
|
||||
/**
|
||||
处理点击分享事件后的block对象
|
||||
*/
|
||||
@property(nonatomic, copy) UMSocialSnsPlatformClickHandler snsClickHandler;
|
||||
|
||||
/**
|
||||
处理点击登录事件后的block对象
|
||||
*/
|
||||
@property(nonatomic, copy) UMSocialSnsPlatformLoginHandler loginClickHandler;
|
||||
|
||||
/**
|
||||
是否需要登录授权
|
||||
*/
|
||||
@property(nonatomic, assign) BOOL needLogin;
|
||||
|
||||
/**
|
||||
标志是否有webView授权
|
||||
*/
|
||||
@property(nonatomic, assign) BOOL haveWebViewAuth;
|
||||
/**
|
||||
初始化方法
|
||||
|
||||
@param platformName 作为该对象标识的平台名
|
||||
*/
|
||||
-(id)initWithPlatformName:(NSString *)platformName;
|
||||
@end
|
||||
|
||||
/*
|
||||
Sns平台类管理者类
|
||||
*/
|
||||
@interface UMSocialSnsPlatformManager : NSObject
|
||||
|
||||
/**
|
||||
sns平台配置数组,此数组由allSnsArray转换,只包含平台名作为元素
|
||||
*/
|
||||
@property (nonatomic, readonly) NSArray *allSnsValuesArray;
|
||||
|
||||
/**
|
||||
该NSDictionary以各个平台名为key,UMSocialPlatform对象为value
|
||||
*/
|
||||
@property (nonatomic, retain) NSDictionary *allSnsPlatformDictionary;
|
||||
|
||||
/**
|
||||
`UMSocialSnsPlatformManager`的单例方法
|
||||
|
||||
@return `UMSocialSnsPlatformManager`的单例对象
|
||||
*/
|
||||
+ (UMSocialSnsPlatformManager *)sharedInstance;
|
||||
|
||||
|
||||
/**
|
||||
根据平台名,返回平台对象
|
||||
|
||||
@param platformName sns平台名
|
||||
|
||||
@return UMSocialSnsPlatform 平台对象
|
||||
*/
|
||||
+(UMSocialSnsPlatform *)getSocialPlatformWithName:(NSString *)snsName;
|
||||
|
||||
/**
|
||||
根据平台枚举变量,返回平台对象
|
||||
|
||||
@param UMSocialSnsType sns平台枚举变量
|
||||
|
||||
@return NSString 平台名
|
||||
*/
|
||||
+ (NSString *)getSnsPlatformString:(UMSocialSnsType)socialSnsType;
|
||||
|
||||
/**
|
||||
把配置平台的次序号转换成平台名
|
||||
|
||||
@param snsIndex 使用的平台顺序,使用的平台配置在UMSocialConfigDelegate,例如`- (NSArray *)shareToPlatforms;`返回的是UMSocialSnsTypeSina和UMSocialSnsTypeTenc,UMSocialSnsTypeSina就是0,UMSocialSnsTypeTenc就是1
|
||||
|
||||
@return 平台名字符串
|
||||
*/
|
||||
+(NSString *)getSnsPlatformStringFromIndex:(NSInteger)snsIndex;
|
||||
|
||||
@end
|
||||
@@ -0,0 +1,123 @@
|
||||
//
|
||||
// UMSocialSnsService.h
|
||||
// SocialSDK
|
||||
//
|
||||
// Created by Jiahuan Ye on 13-1-8.
|
||||
// Copyright (c) 2013年 Umeng. All rights reserved.
|
||||
//
|
||||
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@class UMSocialControllerService;
|
||||
|
||||
/*
|
||||
自定义的类似iOS6.0中`UIActivityViewController`样式的列表,每个sns平台由对应图片和名称组成。注意:如果你要此控件支持多方向,需要在自己的UIViewController中屏幕旋转的`didRotateFromInterfaceOrientation`调用`UMSocialIconActionSheet`的`setNeedsDisplay`方法,来重新布局。
|
||||
*/
|
||||
@interface UMSocialIconActionSheet : UIView
|
||||
|
||||
|
||||
/**
|
||||
将自己自下往上弹出来
|
||||
|
||||
@param showView 在此父UIView自下往上弹出来的
|
||||
*/
|
||||
-(void)showInView:(UIView *)showView;
|
||||
|
||||
/**
|
||||
将自己移除
|
||||
|
||||
*/
|
||||
-(void)dismiss;
|
||||
@end
|
||||
|
||||
|
||||
@protocol WXApiDelegate ;
|
||||
@protocol UMSocialUIDelegate;
|
||||
|
||||
/*
|
||||
实现快速分享,类方法传入相应的参数,既可以弹出分享列表。现在提供两种列表样式。
|
||||
*/
|
||||
@interface UMSocialSnsService : NSObject
|
||||
|
||||
/**
|
||||
当应用从后台唤起时,应调用此方法,需要完成退出当前登录状态的功能
|
||||
|
||||
*/
|
||||
+(void)applicationDidBecomeActive;
|
||||
|
||||
/**
|
||||
处理app的URL方法
|
||||
若除了 UMSocial SDK外,还需要处理其他url,可以针对url的前缀作处理,例如下面写法:
|
||||
|
||||
if ([url.description hasPrefix:@"xxxx"]) {
|
||||
//你的处理逻辑
|
||||
}
|
||||
else {
|
||||
return [UMSocialSnsService handleOpenURL:url];
|
||||
}
|
||||
|
||||
@param url 传入的url
|
||||
|
||||
*/
|
||||
+(BOOL)handleOpenURL:(NSURL *)url;
|
||||
|
||||
/**
|
||||
|
||||
Deprecated API
|
||||
|
||||
处理app的URL方法
|
||||
|
||||
@param url 传入的url
|
||||
|
||||
@return wxApiDelegate 实现微信代理对象
|
||||
*/
|
||||
+(BOOL)handleOpenURL:(NSURL *)url wxApiDelegate:(id<WXApiDelegate>)wxApiDelegate;
|
||||
|
||||
///---------------------------------------
|
||||
/// @name 快速分享
|
||||
///---------------------------------------
|
||||
|
||||
/**
|
||||
弹出一个分享列表的UITableViewController
|
||||
|
||||
@param controller 在该controller弹出分享列表的UIActionSheet
|
||||
@param appKey 友盟appKey
|
||||
@param shareText 分享编辑页面的内嵌文字
|
||||
@param shareImage 可以传入`UIImage`,或者`NSData`类型,分享内嵌图片,用户可以在编辑页面删除
|
||||
@param snsNames 你要分享到的sns平台类型,该NSArray值是`UMSocialSnsPlatformManager.h`定义的平台名的字符串常量,有UMShareToSina,UMShareToTencent,UMShareToRenren,UMShareToDouban,UMShareToQzone,UMShareToEmail,UMShareToSms等
|
||||
@param delegate 实现分享完成后的回调对象,如果不关注分享完成的状态,可以设为nil
|
||||
*/
|
||||
+(void)presentSnsController:(UIViewController *)controller
|
||||
appKey:(NSString *)appKey
|
||||
shareText:(NSString *)shareText
|
||||
shareImage:(id)shareImage
|
||||
shareToSnsNames:(NSArray *)snsNames
|
||||
delegate:(id <UMSocialUIDelegate>)delegate;
|
||||
|
||||
/**
|
||||
弹出一个分享列表的类似iOS6的UIActivityViewController控件
|
||||
|
||||
@param controller 在该controller弹出分享列表的UIActionSheet
|
||||
@param appKey 友盟appKey
|
||||
@param shareText 分享编辑页面的内嵌文字
|
||||
@param shareImage 分享内嵌图片,用户可以在编辑页面删除
|
||||
@param snsNames 你要分享到的sns平台类型,该NSArray值是`UMSocialSnsPlatformManager.h`定义的平台名的字符串常量,有UMShareToSina,UMShareToTencent,UMShareToRenren,UMShareToDouban,UMShareToQzone,UMShareToEmail,UMShareToSms等
|
||||
@param delegate 实现分享完成后的回调对象,如果不关注分享完成的状态,可以设为nil
|
||||
*/
|
||||
+(void)presentSnsIconSheetView:(UIViewController *)controller
|
||||
appKey:(NSString *)appKey
|
||||
shareText:(NSString *)shareText
|
||||
shareImage:(id)shareImage
|
||||
shareToSnsNames:(NSArray *)snsNames
|
||||
delegate:(id <UMSocialUIDelegate>)delegate;
|
||||
|
||||
/**
|
||||
得到单例对象的类方法
|
||||
|
||||
@return `UMSocialSnsService`的单例对象
|
||||
*/
|
||||
+ (UMSocialSnsService *)sharedInstance;
|
||||
|
||||
@end
|
||||
@@ -0,0 +1,387 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">1072</int>
|
||||
<string key="IBDocument.SystemVersion">12E55</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">4488.2</string>
|
||||
<string key="IBDocument.AppKitVersion">1187.39</string>
|
||||
<string key="IBDocument.HIToolboxVersion">626.00</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="NS.object.0">3715.3</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>IBMKMapView</string>
|
||||
<string>IBProxyObject</string>
|
||||
<string>IBUIImageView</string>
|
||||
<string>IBUILabel</string>
|
||||
<string>IBUITextView</string>
|
||||
<string>IBUIView</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
</array>
|
||||
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
||||
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
||||
<integer value="1" key="NS.object.0"/>
|
||||
</object>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="221769935">
|
||||
<object class="IBProxyObject" id="349759446">
|
||||
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBProxyObject" id="17623494">
|
||||
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUIView" id="671738694">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">1298</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBUIImageView" id="411493787">
|
||||
<reference key="NSNextResponder" ref="671738694"/>
|
||||
<int key="NSvFlags">1298</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrameSize">{320, 167}</string>
|
||||
<reference key="NSSuperview" ref="671738694"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="244069909"/>
|
||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUIImageView" id="244069909">
|
||||
<reference key="NSNextResponder" ref="671738694"/>
|
||||
<int key="NSvFlags">1312</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{12, 59}, {35, 35}}</string>
|
||||
<reference key="NSSuperview" ref="671738694"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="96009839"/>
|
||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<object class="NSCustomResource" key="IBUIImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">UMSocialSDKResourcesNew.bundle/Buttons/UMS_User-Avatar-Placeholder</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBUILabel" id="767030701">
|
||||
<reference key="NSNextResponder" ref="671738694"/>
|
||||
<int key="NSvFlags">1298</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{86, 210}, {148, 35}}</string>
|
||||
<reference key="NSSuperview" ref="671738694"/>
|
||||
<reference key="NSWindow"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<int key="IBUIContentMode">7</int>
|
||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<string key="IBUIText">用户未分享地理位置</string>
|
||||
<object class="NSColor" key="IBUITextColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC40MTk1OTM3ODczIDAuNDIwNjk2MjY1MyAwLjQzNzUxOTkyOTgAA</bytes>
|
||||
</object>
|
||||
<object class="NSColor" key="IBUIHighlightedColor" id="502447451">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
<object class="NSColor" key="IBUIShadowColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MCAwIDAgMC44AA</bytes>
|
||||
</object>
|
||||
<int key="IBUIBaselineAdjustment">1</int>
|
||||
<float key="IBUIMinimumFontSize">10</float>
|
||||
<int key="IBUITextAlignment">1</int>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||
<string key="name">Helvetica</string>
|
||||
<string key="family">Helvetica</string>
|
||||
<int key="traits">0</int>
|
||||
<double key="pointSize">14</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont">
|
||||
<string key="NSName">Helvetica</string>
|
||||
<double key="NSSize">14</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
<bool key="IBUIAdjustsFontSizeToFit">NO</bool>
|
||||
</object>
|
||||
<object class="IBMKMapView" id="152427245">
|
||||
<reference key="NSNextResponder" ref="671738694"/>
|
||||
<int key="NSvFlags">1288</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 164}, {320, 252}}</string>
|
||||
<reference key="NSSuperview" ref="671738694"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="767030701"/>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<bool key="IBUIMultipleTouchEnabled">YES</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUILabel" id="489614640">
|
||||
<reference key="NSNextResponder" ref="671738694"/>
|
||||
<int key="NSvFlags">1313</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{61, 136}, {76, 20}}</string>
|
||||
<reference key="NSSuperview" ref="671738694"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="152427245"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<int key="IBUIContentMode">7</int>
|
||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<string key="IBUIText">100 months</string>
|
||||
<object class="NSColor" key="IBUITextColor">
|
||||
<int key="NSColorSpace">2</int>
|
||||
<bytes key="NSRGB">MC43MDk4MDM5Mzg5IDAuNzEzNzI1NTA3MyAwLjcyOTQxMTc4MDgAA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedColor" ref="502447451"/>
|
||||
<object class="NSColor" key="IBUIShadowColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MCAwIDAgMC4yAA</bytes>
|
||||
</object>
|
||||
<int key="IBUIBaselineAdjustment">1</int>
|
||||
<float key="IBUIMinimumFontSize">10</float>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||
<string key="name">Helvetica</string>
|
||||
<string key="family">Helvetica</string>
|
||||
<int key="traits">0</int>
|
||||
<double key="pointSize">12</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont">
|
||||
<string key="NSName">Helvetica</string>
|
||||
<double key="NSSize">12</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
<bool key="IBUIAdjustsFontSizeToFit">NO</bool>
|
||||
</object>
|
||||
<object class="IBUITextView" id="96009839">
|
||||
<reference key="NSNextResponder" ref="671738694"/>
|
||||
<int key="NSvFlags">1284</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{61, 8}, {240, 128}}</string>
|
||||
<reference key="NSSuperview" ref="671738694"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="489614640"/>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<bool key="IBUIMultipleTouchEnabled">YES</bool>
|
||||
<object class="IBUIAccessibilityConfiguration" key="IBUIAccessibilityConfiguration">
|
||||
<integer value="256" key="IBUIAccessibilityTraits"/>
|
||||
<boolean value="NO" key="IBUIIsAccessibilityElement"/>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<bool key="IBUIEditable">NO</bool>
|
||||
<string key="IBUIText">Lorem ipsum dolor sit er elit </string>
|
||||
<reference key="IBUITextColor" ref="502447451"/>
|
||||
<object class="IBUITextInputTraits" key="IBUITextInputTraits">
|
||||
<int key="IBUIAutocapitalizationType">2</int>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework-SevenAndLater</string>
|
||||
</object>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||
<int key="type">1</int>
|
||||
<double key="pointSize">13</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont">
|
||||
<string key="NSName">HelveticaNeue</string>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 64}, {320, 416}}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="411493787"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4yMTU2ODYyNzQ1IDAuMjM5MjE1Njg2MyAwLjI3MDU4ODIzNTMAA</bytes>
|
||||
</object>
|
||||
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
|
||||
<object class="IBUISimulatedNavigationBarMetrics" key="IBUISimulatedTopBarMetrics">
|
||||
<bool key="IBUITranslucent">NO</bool>
|
||||
<bool key="IBUIPrompted">NO</bool>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<bool key="usesAutoincrementingIDs">NO</bool>
|
||||
<array class="NSMutableArray" key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">commentBackgroundImage</string>
|
||||
<reference key="source" ref="349759446"/>
|
||||
<reference key="destination" ref="411493787"/>
|
||||
</object>
|
||||
<string key="id">53</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">commentTextView</string>
|
||||
<reference key="source" ref="349759446"/>
|
||||
<reference key="destination" ref="96009839"/>
|
||||
</object>
|
||||
<string key="id">61</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">mapView</string>
|
||||
<reference key="source" ref="349759446"/>
|
||||
<reference key="destination" ref="152427245"/>
|
||||
</object>
|
||||
<string key="id">49</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">profileImage</string>
|
||||
<reference key="source" ref="349759446"/>
|
||||
<reference key="destination" ref="244069909"/>
|
||||
</object>
|
||||
<string key="id">6</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">timeLabel</string>
|
||||
<reference key="source" ref="349759446"/>
|
||||
<reference key="destination" ref="489614640"/>
|
||||
</object>
|
||||
<string key="id">47</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="349759446"/>
|
||||
<reference key="destination" ref="671738694"/>
|
||||
</object>
|
||||
<string key="id">45</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">delegate</string>
|
||||
<reference key="source" ref="152427245"/>
|
||||
<reference key="destination" ref="349759446"/>
|
||||
</object>
|
||||
<string key="id">48</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">0</string>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="221769935"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-1</string>
|
||||
<reference key="object" ref="349759446"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-2</string>
|
||||
<reference key="object" ref="17623494"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">1</string>
|
||||
<reference key="object" ref="671738694"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="411493787"/>
|
||||
<reference ref="244069909"/>
|
||||
<reference ref="767030701"/>
|
||||
<reference ref="152427245"/>
|
||||
<reference ref="489614640"/>
|
||||
<reference ref="96009839"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">8</string>
|
||||
<reference key="object" ref="411493787"/>
|
||||
<reference key="parent" ref="671738694"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">4</string>
|
||||
<reference key="object" ref="244069909"/>
|
||||
<reference key="parent" ref="671738694"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">51</string>
|
||||
<reference key="object" ref="767030701"/>
|
||||
<reference key="parent" ref="671738694"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">9</string>
|
||||
<reference key="object" ref="152427245"/>
|
||||
<reference key="parent" ref="671738694"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">46</string>
|
||||
<reference key="object" ref="489614640"/>
|
||||
<reference key="parent" ref="671738694"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">59</string>
|
||||
<reference key="object" ref="96009839"/>
|
||||
<reference key="parent" ref="671738694"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.CustomClassName">UMSCommentDetailController</string>
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-1.showNotes"/>
|
||||
<string key="-2.CustomClassName">UIResponder</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-2.showNotes"/>
|
||||
<string key="1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="1.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="1.showNotes"/>
|
||||
<string key="4.CustomClassName">UMImageView</string>
|
||||
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="4.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="4.showNotes"/>
|
||||
<string key="46.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="46.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="46.showNotes"/>
|
||||
<string key="51.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="51.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="51.showNotes"/>
|
||||
<string key="59.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="59.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="59.showNotes"/>
|
||||
<string key="8.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="8.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="8.showNotes"/>
|
||||
<string key="9.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="9.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="9.showNotes"/>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes"/>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">YES</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
|
||||
<real value="1072" key="NS.object.0"/>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
<object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
|
||||
<string key="NS.key.0">UMSocialSDKResourcesNew.bundle/Buttons/UMS_User-Avatar-Placeholder</string>
|
||||
<string key="NS.object.0">{16, 16}</string>
|
||||
</object>
|
||||
<string key="IBCocoaTouchPluginVersion">3715.3</string>
|
||||
</data>
|
||||
</archive>
|
||||
@@ -0,0 +1,651 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">1072</int>
|
||||
<string key="IBDocument.SystemVersion">12E55</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">4488.2</string>
|
||||
<string key="IBDocument.AppKitVersion">1187.39</string>
|
||||
<string key="IBDocument.HIToolboxVersion">626.00</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="NS.object.0">3715.3</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>IBMKMapView</string>
|
||||
<string>IBProxyObject</string>
|
||||
<string>IBUIButton</string>
|
||||
<string>IBUIImageView</string>
|
||||
<string>IBUITextView</string>
|
||||
<string>IBUIView</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
</array>
|
||||
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
||||
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
||||
<integer value="1" key="NS.object.0"/>
|
||||
</object>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="68713772">
|
||||
<object class="IBProxyObject" id="665260850">
|
||||
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBProxyObject" id="333226233">
|
||||
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUIView" id="98351884">
|
||||
<nil key="NSNextResponder"/>
|
||||
<int key="NSvFlags">1298</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBUIView" id="340902121">
|
||||
<reference key="NSNextResponder" ref="98351884"/>
|
||||
<int key="NSvFlags">1300</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBUITextView" id="1010150400">
|
||||
<reference key="NSNextResponder" ref="340902121"/>
|
||||
<int key="NSvFlags">1298</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrameSize">{320, 155}</string>
|
||||
<reference key="NSSuperview" ref="340902121"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor" id="138449266">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<bool key="IBUIMultipleTouchEnabled">YES</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<string key="IBUIText"/>
|
||||
<object class="IBUITextInputTraits" key="IBUITextInputTraits">
|
||||
<int key="IBUIAutocapitalizationType">2</int>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework-SevenAndLater</string>
|
||||
</object>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||
<int key="type">1</int>
|
||||
<double key="pointSize">14</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont">
|
||||
<string key="NSName">HelveticaNeue</string>
|
||||
<double key="NSSize">14</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBUIView" id="807508793">
|
||||
<reference key="NSNextResponder" ref="340902121"/>
|
||||
<int key="NSvFlags">1314</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBUIImageView" id="258777870">
|
||||
<reference key="NSNextResponder" ref="807508793"/>
|
||||
<int key="NSvFlags">1298</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrameSize">{320, 49}</string>
|
||||
<reference key="NSSuperview" ref="807508793"/>
|
||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUIButton" id="912504186">
|
||||
<reference key="NSNextResponder" ref="807508793"/>
|
||||
<int key="NSvFlags">-2147482332</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{94, 7}, {30, 30}}</string>
|
||||
<reference key="NSSuperview" ref="807508793"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<int key="IBUIContentMode">4</int>
|
||||
<int key="IBUITag">1001</int>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<double key="IBUIImageEdgeInsets.top">10</double>
|
||||
<double key="IBUIImageEdgeInsets.bottom">0.0</double>
|
||||
<double key="IBUIImageEdgeInsets.left">10</double>
|
||||
<double key="IBUIImageEdgeInsets.right">0.0</double>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="138449266"/>
|
||||
<object class="NSColor" key="IBUINormalTitleShadowColor" id="436951838">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC41AA</bytes>
|
||||
</object>
|
||||
<object class="NSCustomResource" key="IBUINormalBackgroundImage" id="469264745">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off.png</string>
|
||||
</object>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription" id="809070652">
|
||||
<int key="type">2</int>
|
||||
<double key="pointSize">15</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont" id="896605463">
|
||||
<string key="NSName">HelveticaNeue-Bold</string>
|
||||
<double key="NSSize">15</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBUIButton" id="943782420">
|
||||
<reference key="NSNextResponder" ref="807508793"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 5}, {60, 37}}</string>
|
||||
<reference key="NSSuperview" ref="807508793"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="138449266"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="436951838"/>
|
||||
<reference key="IBUIFontDescription" ref="809070652"/>
|
||||
<reference key="IBUIFont" ref="896605463"/>
|
||||
</object>
|
||||
<object class="IBUIButton" id="343832475">
|
||||
<reference key="NSNextResponder" ref="807508793"/>
|
||||
<int key="NSvFlags">-2147482332</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{184, 9}, {30, 30}}</string>
|
||||
<reference key="NSSuperview" ref="807508793"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<int key="IBUIContentMode">4</int>
|
||||
<int key="IBUITag">1001</int>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<double key="IBUIImageEdgeInsets.top">10</double>
|
||||
<double key="IBUIImageEdgeInsets.bottom">0.0</double>
|
||||
<double key="IBUIImageEdgeInsets.left">10</double>
|
||||
<double key="IBUIImageEdgeInsets.right">0.0</double>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="138449266"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="436951838"/>
|
||||
<reference key="IBUINormalBackgroundImage" ref="469264745"/>
|
||||
<reference key="IBUIFontDescription" ref="809070652"/>
|
||||
<reference key="IBUIFont" ref="896605463"/>
|
||||
</object>
|
||||
<object class="IBUIButton" id="765262161">
|
||||
<reference key="NSNextResponder" ref="807508793"/>
|
||||
<int key="NSvFlags">-2147482332</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{138, 10}, {30, 30}}</string>
|
||||
<reference key="NSSuperview" ref="807508793"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<int key="IBUIContentMode">4</int>
|
||||
<int key="IBUITag">1000</int>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<double key="IBUIImageEdgeInsets.top">10</double>
|
||||
<double key="IBUIImageEdgeInsets.bottom">0.0</double>
|
||||
<double key="IBUIImageEdgeInsets.left">10</double>
|
||||
<double key="IBUIImageEdgeInsets.right">0.0</double>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="138449266"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="436951838"/>
|
||||
<object class="NSCustomResource" key="IBUINormalBackgroundImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off.png</string>
|
||||
</object>
|
||||
<reference key="IBUIFontDescription" ref="809070652"/>
|
||||
<reference key="IBUIFont" ref="896605463"/>
|
||||
</object>
|
||||
<object class="IBUIButton" id="1059685104">
|
||||
<reference key="NSNextResponder" ref="807508793"/>
|
||||
<int key="NSvFlags">-2147482332</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{232, 9}, {30, 30}}</string>
|
||||
<reference key="NSSuperview" ref="807508793"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<int key="IBUIContentMode">4</int>
|
||||
<int key="IBUITag">1002</int>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<double key="IBUIImageEdgeInsets.top">10</double>
|
||||
<double key="IBUIImageEdgeInsets.bottom">0.0</double>
|
||||
<double key="IBUIImageEdgeInsets.left">10</double>
|
||||
<double key="IBUIImageEdgeInsets.right">0.0</double>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="138449266"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="436951838"/>
|
||||
<object class="NSCustomResource" key="IBUINormalBackgroundImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off.png</string>
|
||||
</object>
|
||||
<reference key="IBUIFontDescription" ref="809070652"/>
|
||||
<reference key="IBUIFont" ref="896605463"/>
|
||||
</object>
|
||||
<object class="IBUIButton" id="916685683">
|
||||
<reference key="NSNextResponder" ref="807508793"/>
|
||||
<int key="NSvFlags">-2147482332</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{278, 9}, {30, 30}}</string>
|
||||
<reference key="NSSuperview" ref="807508793"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<int key="IBUIContentMode">4</int>
|
||||
<int key="IBUITag">1003</int>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<double key="IBUIImageEdgeInsets.top">10</double>
|
||||
<double key="IBUIImageEdgeInsets.bottom">0.0</double>
|
||||
<double key="IBUIImageEdgeInsets.left">10</double>
|
||||
<double key="IBUIImageEdgeInsets.right">0.0</double>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="138449266"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="436951838"/>
|
||||
<object class="NSCustomResource" key="IBUINormalBackgroundImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off.png</string>
|
||||
</object>
|
||||
<reference key="IBUIFontDescription" ref="809070652"/>
|
||||
<reference key="IBUIFont" ref="896605463"/>
|
||||
</object>
|
||||
</array>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 150}, {320, 50}}</string>
|
||||
<reference key="NSSuperview" ref="340902121"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
<object class="NSColorSpace" key="NSCustomColorSpace">
|
||||
<int key="NSID">2</int>
|
||||
</object>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrameSize">{320, 200}</string>
|
||||
<reference key="NSSuperview" ref="98351884"/>
|
||||
<reference key="IBUIBackgroundColor" ref="138449266"/>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUIView" id="24624849">
|
||||
<reference key="NSNextResponder" ref="98351884"/>
|
||||
<int key="NSvFlags">1292</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBMKMapView" id="1038191599">
|
||||
<reference key="NSNextResponder" ref="24624849"/>
|
||||
<int key="NSvFlags">1292</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{7, 47}, {306, 158}}</string>
|
||||
<reference key="NSSuperview" ref="24624849"/>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<bool key="IBUIMultipleTouchEnabled">YES</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<bool key="IBMKZoomEnabled">NO</bool>
|
||||
<bool key="IBMKScrollEnabled">NO</bool>
|
||||
</object>
|
||||
<object class="IBUIButton" id="331585885">
|
||||
<reference key="NSNextResponder" ref="24624849"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{227, 5}, {73, 31}}</string>
|
||||
<reference key="NSSuperview" ref="24624849"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<reference key="IBUINormalTitleColor" ref="138449266"/>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="138449266"/>
|
||||
<string key="IBUINormalTitle">取消定位</string>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="436951838"/>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||
<int key="type">2</int>
|
||||
<double key="pointSize">13</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont">
|
||||
<string key="NSName">HelveticaNeue-Bold</string>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 190}, {320, 220}}</string>
|
||||
<reference key="NSSuperview" ref="98351884"/>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 64}, {320, 416}}</string>
|
||||
<reference key="IBUIBackgroundColor" ref="138449266"/>
|
||||
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
|
||||
<object class="IBUISimulatedNavigationBarMetrics" key="IBUISimulatedTopBarMetrics">
|
||||
<bool key="IBUITranslucent">NO</bool>
|
||||
<bool key="IBUIPrompted">NO</bool>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<bool key="usesAutoincrementingIDs">NO</bool>
|
||||
<array class="NSMutableArray" key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">closeLocationButton</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="331585885"/>
|
||||
</object>
|
||||
<string key="id">23</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">commentTextView</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="1010150400"/>
|
||||
</object>
|
||||
<string key="id">21</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">downView</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="24624849"/>
|
||||
</object>
|
||||
<string key="id">20</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">mapView</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="1038191599"/>
|
||||
</object>
|
||||
<string key="id">52</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">shareToDoubanButton</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="916685683"/>
|
||||
</object>
|
||||
<string key="id">38</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">shareToQzoneButton</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="912504186"/>
|
||||
</object>
|
||||
<string key="id">51</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">shareToRenrenButton</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="1059685104"/>
|
||||
</object>
|
||||
<string key="id">37</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">shareToSinaButton</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="765262161"/>
|
||||
</object>
|
||||
<string key="id">36</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">shareToTencentButton</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="343832475"/>
|
||||
</object>
|
||||
<string key="id">35</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">showLocationButton</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="943782420"/>
|
||||
</object>
|
||||
<string key="id">27</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">toolView</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="807508793"/>
|
||||
</object>
|
||||
<string key="id">30</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">toolViewImageView</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="258777870"/>
|
||||
</object>
|
||||
<string key="id">54</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">upView</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="340902121"/>
|
||||
</object>
|
||||
<string key="id">43</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="665260850"/>
|
||||
<reference key="destination" ref="98351884"/>
|
||||
</object>
|
||||
<string key="id">9</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">delegate</string>
|
||||
<reference key="source" ref="1038191599"/>
|
||||
<reference key="destination" ref="665260850"/>
|
||||
</object>
|
||||
<string key="id">53</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">0</string>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="68713772"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-1</string>
|
||||
<reference key="object" ref="665260850"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-2</string>
|
||||
<reference key="object" ref="333226233"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">1</string>
|
||||
<reference key="object" ref="98351884"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="340902121"/>
|
||||
<reference ref="24624849"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">4</string>
|
||||
<reference key="object" ref="340902121"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="1010150400"/>
|
||||
<reference ref="807508793"/>
|
||||
</array>
|
||||
<reference key="parent" ref="98351884"/>
|
||||
<string key="objectName">UpView</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">3</string>
|
||||
<reference key="object" ref="1010150400"/>
|
||||
<reference key="parent" ref="340902121"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">6</string>
|
||||
<reference key="object" ref="807508793"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="258777870"/>
|
||||
<reference ref="912504186"/>
|
||||
<reference ref="943782420"/>
|
||||
<reference ref="343832475"/>
|
||||
<reference ref="765262161"/>
|
||||
<reference ref="1059685104"/>
|
||||
<reference ref="916685683"/>
|
||||
</array>
|
||||
<reference key="parent" ref="340902121"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">19</string>
|
||||
<reference key="object" ref="258777870"/>
|
||||
<reference key="parent" ref="807508793"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">49</string>
|
||||
<reference key="object" ref="912504186"/>
|
||||
<reference key="parent" ref="807508793"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">26</string>
|
||||
<reference key="object" ref="943782420"/>
|
||||
<reference key="parent" ref="807508793"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">31</string>
|
||||
<reference key="object" ref="343832475"/>
|
||||
<reference key="parent" ref="807508793"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">32</string>
|
||||
<reference key="object" ref="765262161"/>
|
||||
<reference key="parent" ref="807508793"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">33</string>
|
||||
<reference key="object" ref="1059685104"/>
|
||||
<reference key="parent" ref="807508793"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">34</string>
|
||||
<reference key="object" ref="916685683"/>
|
||||
<reference key="parent" ref="807508793"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">18</string>
|
||||
<reference key="object" ref="24624849"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="1038191599"/>
|
||||
<reference ref="331585885"/>
|
||||
</array>
|
||||
<reference key="parent" ref="98351884"/>
|
||||
<string key="objectName">DownView</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">14</string>
|
||||
<reference key="object" ref="1038191599"/>
|
||||
<reference key="parent" ref="24624849"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">15</string>
|
||||
<reference key="object" ref="331585885"/>
|
||||
<reference key="parent" ref="24624849"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.CustomClassName">UMSCommentEditController</string>
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-1.showNotes"/>
|
||||
<string key="-2.CustomClassName">UIResponder</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-2.showNotes"/>
|
||||
<string key="1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="1.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="1.showNotes"/>
|
||||
<string key="14.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="14.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="14.showNotes"/>
|
||||
<string key="15.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="15.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="15.showNotes"/>
|
||||
<string key="18.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="18.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="18.showNotes"/>
|
||||
<string key="19.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="19.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="19.showNotes"/>
|
||||
<string key="26.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="26.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="26.showNotes"/>
|
||||
<string key="3.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="3.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="3.showNotes"/>
|
||||
<string key="31.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="31.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="31.showNotes"/>
|
||||
<string key="32.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="32.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="32.showNotes"/>
|
||||
<string key="33.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="33.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="33.showNotes"/>
|
||||
<string key="34.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="34.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="34.showNotes"/>
|
||||
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="4.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="4.showNotes"/>
|
||||
<string key="49.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="49.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="49.showNotes"/>
|
||||
<string key="6.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="6.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="6.showNotes"/>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes"/>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">YES</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
|
||||
<real value="1072" key="NS.object.0"/>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
|
||||
<string key="UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_douban_off.png">{16, 16}</string>
|
||||
<string key="UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_renren_off.png">{16, 16}</string>
|
||||
<string key="UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_sina_off.png">{16, 16}</string>
|
||||
<string key="UMSocialSDKResourcesNew.bundle/SnsPlatform/UMS_tencent_off.png">{16, 16}</string>
|
||||
</dictionary>
|
||||
<string key="IBCocoaTouchPluginVersion">3715.3</string>
|
||||
</data>
|
||||
</archive>
|
||||
@@ -0,0 +1,582 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">1072</int>
|
||||
<string key="IBDocument.SystemVersion">13A603</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">4514</string>
|
||||
<string key="IBDocument.AppKitVersion">1265</string>
|
||||
<string key="IBDocument.HIToolboxVersion">695.00</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="NS.object.0">3747</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>IBMKMapView</string>
|
||||
<string>IBProxyObject</string>
|
||||
<string>IBUIButton</string>
|
||||
<string>IBUIImageView</string>
|
||||
<string>IBUITextView</string>
|
||||
<string>IBUIView</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
</array>
|
||||
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
||||
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
||||
<integer value="1" key="NS.object.0"/>
|
||||
</object>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="368082354">
|
||||
<object class="IBProxyObject" id="943335538">
|
||||
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
<object class="IBProxyObject" id="118031218">
|
||||
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
<object class="IBUIView" id="171606265">
|
||||
<nil key="NSNextResponder"/>
|
||||
<int key="NSvFlags">1306</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBUITextView" id="208946249">
|
||||
<reference key="NSNextResponder" ref="171606265"/>
|
||||
<int key="NSvFlags">1314</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrameSize">{533, 221}</string>
|
||||
<reference key="NSSuperview" ref="171606265"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MSAxIDEAA</bytes>
|
||||
</object>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<bool key="IBUIMultipleTouchEnabled">YES</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<bool key="IBUIShowsHorizontalScrollIndicator">NO</bool>
|
||||
<string key="IBUIText"/>
|
||||
<object class="IBUITextInputTraits" key="IBUITextInputTraits">
|
||||
<int key="IBUIAutocapitalizationType">2</int>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework-SevenAndLater</string>
|
||||
</object>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||
<int key="type">1</int>
|
||||
<double key="pointSize">14</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont">
|
||||
<string key="NSName">HelveticaNeue</string>
|
||||
<double key="NSSize">14</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBUIView" id="880969143">
|
||||
<reference key="NSNextResponder" ref="171606265"/>
|
||||
<int key="NSvFlags">1314</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBUIImageView" id="892771427">
|
||||
<reference key="NSNextResponder" ref="880969143"/>
|
||||
<int key="NSvFlags">1306</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrameSize">{533, 44}</string>
|
||||
<reference key="NSSuperview" ref="880969143"/>
|
||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
<object class="IBUIButton" id="520036346">
|
||||
<reference key="NSNextResponder" ref="880969143"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{40, 0}, {36, 33}}</string>
|
||||
<reference key="NSSuperview" ref="880969143"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<object class="NSColor" key="IBUIHighlightedTitleColor" id="187397936">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
<object class="NSColor" key="IBUINormalTitleShadowColor" id="316927490">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC41AA</bytes>
|
||||
</object>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription" id="78195537">
|
||||
<int key="type">2</int>
|
||||
<double key="pointSize">15</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont" id="971850755">
|
||||
<string key="NSName">HelveticaNeue-Bold</string>
|
||||
<double key="NSSize">15</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBUIButton" id="253974065">
|
||||
<reference key="NSNextResponder" ref="880969143"/>
|
||||
<int key="NSvFlags">-2147482332</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{275, 7}, {30, 30}}</string>
|
||||
<reference key="NSSuperview" ref="880969143"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<int key="IBUIContentMode">4</int>
|
||||
<int key="IBUITag">1001</int>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<double key="IBUIImageEdgeInsets.top">10</double>
|
||||
<double key="IBUIImageEdgeInsets.bottom">0.0</double>
|
||||
<double key="IBUIImageEdgeInsets.left">10</double>
|
||||
<double key="IBUIImageEdgeInsets.right">0.0</double>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="187397936"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="316927490"/>
|
||||
<object class="NSCustomResource" key="IBUINormalBackgroundImage" id="417529781">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">UMS_tencent_off.png</string>
|
||||
</object>
|
||||
<reference key="IBUIFontDescription" ref="78195537"/>
|
||||
<reference key="IBUIFont" ref="971850755"/>
|
||||
</object>
|
||||
<object class="IBUIButton" id="967490862">
|
||||
<reference key="NSNextResponder" ref="880969143"/>
|
||||
<int key="NSvFlags">-2147482332</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{331, 7}, {30, 30}}</string>
|
||||
<reference key="NSSuperview" ref="880969143"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<int key="IBUIContentMode">4</int>
|
||||
<int key="IBUITag">1000</int>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<double key="IBUIImageEdgeInsets.top">10</double>
|
||||
<double key="IBUIImageEdgeInsets.bottom">0.0</double>
|
||||
<double key="IBUIImageEdgeInsets.left">10</double>
|
||||
<double key="IBUIImageEdgeInsets.right">0.0</double>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="187397936"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="316927490"/>
|
||||
<object class="NSCustomResource" key="IBUINormalBackgroundImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">UMS_sina_off.png</string>
|
||||
</object>
|
||||
<reference key="IBUIFontDescription" ref="78195537"/>
|
||||
<reference key="IBUIFont" ref="971850755"/>
|
||||
</object>
|
||||
<object class="IBUIButton" id="408496366">
|
||||
<reference key="NSNextResponder" ref="880969143"/>
|
||||
<int key="NSvFlags">-2147482332</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{384, 7}, {30, 30}}</string>
|
||||
<reference key="NSSuperview" ref="880969143"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<int key="IBUIContentMode">4</int>
|
||||
<int key="IBUITag">1001</int>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<double key="IBUIImageEdgeInsets.top">10</double>
|
||||
<double key="IBUIImageEdgeInsets.bottom">0.0</double>
|
||||
<double key="IBUIImageEdgeInsets.left">10</double>
|
||||
<double key="IBUIImageEdgeInsets.right">0.0</double>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="187397936"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="316927490"/>
|
||||
<reference key="IBUINormalBackgroundImage" ref="417529781"/>
|
||||
<reference key="IBUIFontDescription" ref="78195537"/>
|
||||
<reference key="IBUIFont" ref="971850755"/>
|
||||
</object>
|
||||
<object class="IBUIButton" id="439925023">
|
||||
<reference key="NSNextResponder" ref="880969143"/>
|
||||
<int key="NSvFlags">-2147482332</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{439, 7}, {30, 30}}</string>
|
||||
<reference key="NSSuperview" ref="880969143"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<int key="IBUIContentMode">4</int>
|
||||
<int key="IBUITag">1002</int>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<double key="IBUIImageEdgeInsets.top">10</double>
|
||||
<double key="IBUIImageEdgeInsets.bottom">0.0</double>
|
||||
<double key="IBUIImageEdgeInsets.left">10</double>
|
||||
<double key="IBUIImageEdgeInsets.right">0.0</double>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="187397936"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="316927490"/>
|
||||
<object class="NSCustomResource" key="IBUINormalBackgroundImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">UMS_renren_off.png</string>
|
||||
</object>
|
||||
<reference key="IBUIFontDescription" ref="78195537"/>
|
||||
<reference key="IBUIFont" ref="971850755"/>
|
||||
</object>
|
||||
<object class="IBUIButton" id="868835665">
|
||||
<reference key="NSNextResponder" ref="880969143"/>
|
||||
<int key="NSvFlags">-2147482332</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{493, 7}, {30, 30}}</string>
|
||||
<reference key="NSSuperview" ref="880969143"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<int key="IBUIContentMode">4</int>
|
||||
<int key="IBUITag">1003</int>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<double key="IBUIImageEdgeInsets.top">10</double>
|
||||
<double key="IBUIImageEdgeInsets.bottom">0.0</double>
|
||||
<double key="IBUIImageEdgeInsets.left">10</double>
|
||||
<double key="IBUIImageEdgeInsets.right">0.0</double>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="187397936"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="316927490"/>
|
||||
<object class="NSCustomResource" key="IBUINormalBackgroundImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">UMS_douban_off.png</string>
|
||||
</object>
|
||||
<reference key="IBUIFontDescription" ref="78195537"/>
|
||||
<reference key="IBUIFont" ref="971850755"/>
|
||||
</object>
|
||||
<object class="IBMKMapView" id="943941939">
|
||||
<reference key="NSNextResponder" ref="880969143"/>
|
||||
<int key="NSvFlags">-2147482334</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{35, 80}, {460, 250}}</string>
|
||||
<reference key="NSSuperview" ref="880969143"/>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<bool key="IBUIMultipleTouchEnabled">YES</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
<object class="IBUIButton" id="1009460338">
|
||||
<reference key="NSNextResponder" ref="880969143"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{439, 45}, {73, 27}}</string>
|
||||
<reference key="NSSuperview" ref="880969143"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<reference key="IBUINormalTitleColor" ref="187397936"/>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="187397936"/>
|
||||
<string key="IBUINormalTitle">取消定位</string>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="316927490"/>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||
<int key="type">2</int>
|
||||
<double key="pointSize">13</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont">
|
||||
<string key="NSName">HelveticaNeue-Bold</string>
|
||||
<double key="NSSize">13</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 220}, {533, 44}}</string>
|
||||
<reference key="NSSuperview" ref="171606265"/>
|
||||
<reference key="IBUIBackgroundColor" ref="187397936"/>
|
||||
<bool key="IBUIMultipleTouchEnabled">YES</bool>
|
||||
<object class="IBUIAccessibilityConfiguration" key="IBUIAccessibilityConfiguration">
|
||||
<boolean value="YES" key="IBUIIsAccessibilityElement"/>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrameSize">{533, 260}</string>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
<object class="NSColorSpace" key="NSCustomColorSpace">
|
||||
<int key="NSID">2</int>
|
||||
</object>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<bool key="usesAutoincrementingIDs">NO</bool>
|
||||
<array class="NSMutableArray" key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">closeLocationButton</string>
|
||||
<reference key="source" ref="943335538"/>
|
||||
<reference key="destination" ref="1009460338"/>
|
||||
</object>
|
||||
<string key="id">1352</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">commentTextView</string>
|
||||
<reference key="source" ref="943335538"/>
|
||||
<reference key="destination" ref="208946249"/>
|
||||
</object>
|
||||
<string key="id">183</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">mapView</string>
|
||||
<reference key="source" ref="943335538"/>
|
||||
<reference key="destination" ref="943941939"/>
|
||||
</object>
|
||||
<string key="id">1157</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">shareToDoubanButton</string>
|
||||
<reference key="source" ref="943335538"/>
|
||||
<reference key="destination" ref="868835665"/>
|
||||
</object>
|
||||
<string key="id">765</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">shareToQzoneButton</string>
|
||||
<reference key="source" ref="943335538"/>
|
||||
<reference key="destination" ref="253974065"/>
|
||||
</object>
|
||||
<string key="id">761</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">shareToRenrenButton</string>
|
||||
<reference key="source" ref="943335538"/>
|
||||
<reference key="destination" ref="439925023"/>
|
||||
</object>
|
||||
<string key="id">764</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">shareToSinaButton</string>
|
||||
<reference key="source" ref="943335538"/>
|
||||
<reference key="destination" ref="967490862"/>
|
||||
</object>
|
||||
<string key="id">762</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">shareToTencentButton</string>
|
||||
<reference key="source" ref="943335538"/>
|
||||
<reference key="destination" ref="408496366"/>
|
||||
</object>
|
||||
<string key="id">763</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">showLocationButton</string>
|
||||
<reference key="source" ref="943335538"/>
|
||||
<reference key="destination" ref="520036346"/>
|
||||
</object>
|
||||
<string key="id">801</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">toolView</string>
|
||||
<reference key="source" ref="943335538"/>
|
||||
<reference key="destination" ref="880969143"/>
|
||||
</object>
|
||||
<string key="id">857</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">toolViewImageView</string>
|
||||
<reference key="source" ref="943335538"/>
|
||||
<reference key="destination" ref="892771427"/>
|
||||
</object>
|
||||
<string key="id">1383</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="943335538"/>
|
||||
<reference key="destination" ref="171606265"/>
|
||||
</object>
|
||||
<string key="id">191</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">0</string>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="368082354"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-1</string>
|
||||
<reference key="object" ref="943335538"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-2</string>
|
||||
<reference key="object" ref="118031218"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">87</string>
|
||||
<reference key="object" ref="171606265"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="208946249"/>
|
||||
<reference ref="880969143"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">88</string>
|
||||
<reference key="object" ref="208946249"/>
|
||||
<reference key="parent" ref="171606265"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">802</string>
|
||||
<reference key="object" ref="880969143"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="892771427"/>
|
||||
<reference ref="520036346"/>
|
||||
<reference ref="253974065"/>
|
||||
<reference ref="967490862"/>
|
||||
<reference ref="408496366"/>
|
||||
<reference ref="439925023"/>
|
||||
<reference ref="868835665"/>
|
||||
<reference ref="943941939"/>
|
||||
<reference ref="1009460338"/>
|
||||
</array>
|
||||
<reference key="parent" ref="171606265"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">1299</string>
|
||||
<reference key="object" ref="892771427"/>
|
||||
<reference key="parent" ref="880969143"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">705</string>
|
||||
<reference key="object" ref="520036346"/>
|
||||
<reference key="parent" ref="880969143"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">706</string>
|
||||
<reference key="object" ref="253974065"/>
|
||||
<reference key="parent" ref="880969143"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">708</string>
|
||||
<reference key="object" ref="967490862"/>
|
||||
<reference key="parent" ref="880969143"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">709</string>
|
||||
<reference key="object" ref="408496366"/>
|
||||
<reference key="parent" ref="880969143"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">707</string>
|
||||
<reference key="object" ref="439925023"/>
|
||||
<reference key="parent" ref="880969143"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">710</string>
|
||||
<reference key="object" ref="868835665"/>
|
||||
<reference key="parent" ref="880969143"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">1142</string>
|
||||
<reference key="object" ref="943941939"/>
|
||||
<reference key="parent" ref="880969143"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">1341</string>
|
||||
<reference key="object" ref="1009460338"/>
|
||||
<reference key="parent" ref="880969143"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.CustomClassName">UMSCommentEditController</string>
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-1.showNotes"/>
|
||||
<string key="-2.CustomClassName">UIResponder</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-2.showNotes"/>
|
||||
<string key="1142.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="1142.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="1142.showNotes"/>
|
||||
<string key="1299.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="1299.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="1299.showNotes"/>
|
||||
<string key="1341.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="1341.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="1341.showNotes"/>
|
||||
<string key="705.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="705.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="705.showNotes"/>
|
||||
<string key="706.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="706.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="706.showNotes"/>
|
||||
<string key="707.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="707.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="707.showNotes"/>
|
||||
<string key="708.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="708.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="708.showNotes"/>
|
||||
<string key="709.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="709.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="709.showNotes"/>
|
||||
<string key="710.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="710.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="710.showNotes"/>
|
||||
<string key="802.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="802.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="802.showNotes"/>
|
||||
<string key="87.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="87.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="87.showNotes"/>
|
||||
<string key="88.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="88.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="88.showNotes"/>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes"/>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">YES</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
|
||||
<real value="1072" key="NS.object.0"/>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
|
||||
<string key="UMS_douban_off.png">{39, 39}</string>
|
||||
<string key="UMS_renren_off.png">{39, 39}</string>
|
||||
<string key="UMS_sina_off.png">{39, 39}</string>
|
||||
<string key="UMS_tencent_off.png">{39, 39}</string>
|
||||
</dictionary>
|
||||
<string key="IBCocoaTouchPluginVersion">3747</string>
|
||||
</data>
|
||||
</archive>
|
||||
@@ -0,0 +1,165 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">1072</int>
|
||||
<string key="IBDocument.SystemVersion">12E55</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">4488.2</string>
|
||||
<string key="IBDocument.AppKitVersion">1187.39</string>
|
||||
<string key="IBDocument.HIToolboxVersion">626.00</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="NS.object.0">3715.3</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>IBProxyObject</string>
|
||||
<string>IBUITableView</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
</array>
|
||||
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
||||
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
||||
<integer value="1" key="NS.object.0"/>
|
||||
</object>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="80112323">
|
||||
<object class="IBProxyObject" id="98656197">
|
||||
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBProxyObject" id="999024387">
|
||||
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUITableView" id="154525299">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">1298</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 44}, {320, 436}}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<object class="IBUISimulatedNavigationBarMetrics" key="IBUISimulatedTopBarMetrics">
|
||||
<bool key="IBUITranslucent">NO</bool>
|
||||
<bool key="IBUIPrompted">NO</bool>
|
||||
</object>
|
||||
<object class="IBUIScreenMetrics" key="IBUISimulatedDestinationMetrics">
|
||||
<string key="IBUISimulatedSizeMetricsClass">IBUIScreenMetrics</string>
|
||||
<object class="NSMutableDictionary" key="IBUINormalizedOrientationToSizeMap">
|
||||
<bool key="EncodedWithXMLCoder">YES</bool>
|
||||
<array key="dict.sortedKeys">
|
||||
<integer value="1"/>
|
||||
<integer value="3"/>
|
||||
</array>
|
||||
<array key="dict.values">
|
||||
<string>{320, 480}</string>
|
||||
<string>{480, 320}</string>
|
||||
</array>
|
||||
</object>
|
||||
<string key="IBUITargetRuntime">IBCocoaTouchFramework</string>
|
||||
<string key="IBUIDisplayName">Retina 3.5-inch Full Screen</string>
|
||||
<int key="IBUIType">0</int>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<bool key="IBUIAlwaysBounceVertical">YES</bool>
|
||||
<int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
|
||||
<bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
|
||||
<float key="IBUIRowHeight">44</float>
|
||||
<float key="IBUISectionHeaderHeight">22</float>
|
||||
<float key="IBUISectionFooterHeight">22</float>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<bool key="usesAutoincrementingIDs">NO</bool>
|
||||
<array class="NSMutableArray" key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="98656197"/>
|
||||
<reference key="destination" ref="154525299"/>
|
||||
</object>
|
||||
<string key="id">9</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">dataSource</string>
|
||||
<reference key="source" ref="154525299"/>
|
||||
<reference key="destination" ref="98656197"/>
|
||||
</object>
|
||||
<string key="id">10</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">delegate</string>
|
||||
<reference key="source" ref="154525299"/>
|
||||
<reference key="destination" ref="98656197"/>
|
||||
</object>
|
||||
<string key="id">11</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">0</string>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="80112323"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-1</string>
|
||||
<reference key="object" ref="98656197"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-2</string>
|
||||
<reference key="object" ref="999024387"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">8</string>
|
||||
<reference key="object" ref="154525299"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.CustomClassName">UMSLoginViewController</string>
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-1.showNotes"/>
|
||||
<string key="-2.CustomClassName">UIResponder</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-2.showNotes"/>
|
||||
<string key="8.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="8.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="8.showNotes"/>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes"/>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">YES</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
|
||||
<real value="1072" key="NS.object.0"/>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
|
||||
<real value="1072" key="NS.object.0"/>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
<string key="IBCocoaTouchPluginVersion">3715.3</string>
|
||||
</data>
|
||||
</archive>
|
||||
@@ -0,0 +1,145 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">1072</int>
|
||||
<string key="IBDocument.SystemVersion">12E55</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">4488.2</string>
|
||||
<string key="IBDocument.AppKitVersion">1187.39</string>
|
||||
<string key="IBDocument.HIToolboxVersion">626.00</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="NS.object.0">3715.3</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>IBProxyObject</string>
|
||||
<string>IBUITableView</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
</array>
|
||||
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
||||
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
||||
<integer value="1" key="NS.object.0"/>
|
||||
</object>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="214040057">
|
||||
<object class="IBProxyObject" id="688180670">
|
||||
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBProxyObject" id="381467548">
|
||||
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUITableView" id="612151263">
|
||||
<nil key="NSNextResponder"/>
|
||||
<int key="NSvFlags">1298</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 64}, {320, 416}}</string>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<bool key="IBUIClearsContextBeforeDrawing">NO</bool>
|
||||
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
|
||||
<object class="IBUISimulatedNavigationBarMetrics" key="IBUISimulatedTopBarMetrics">
|
||||
<bool key="IBUITranslucent">NO</bool>
|
||||
<bool key="IBUIPrompted">NO</bool>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<bool key="IBUIBouncesZoom">NO</bool>
|
||||
<int key="IBUISectionIndexMinimumDisplayRowCount">0</int>
|
||||
<bool key="IBUIShowsSelectionImmediatelyOnTouchBegin">YES</bool>
|
||||
<float key="IBUIRowHeight">44</float>
|
||||
<float key="IBUISectionHeaderHeight">22</float>
|
||||
<float key="IBUISectionFooterHeight">22</float>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<bool key="usesAutoincrementingIDs">NO</bool>
|
||||
<array class="NSMutableArray" key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="688180670"/>
|
||||
<reference key="destination" ref="612151263"/>
|
||||
</object>
|
||||
<string key="id">5</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">dataSource</string>
|
||||
<reference key="source" ref="612151263"/>
|
||||
<reference key="destination" ref="688180670"/>
|
||||
</object>
|
||||
<string key="id">6</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">delegate</string>
|
||||
<reference key="source" ref="612151263"/>
|
||||
<reference key="destination" ref="688180670"/>
|
||||
</object>
|
||||
<string key="id">7</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">0</string>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="214040057"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-1</string>
|
||||
<reference key="object" ref="688180670"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-2</string>
|
||||
<reference key="object" ref="381467548"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">4</string>
|
||||
<reference key="object" ref="612151263"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.CustomClassName">UMSShareListController</string>
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-1.showNotes"/>
|
||||
<string key="-2.CustomClassName">UIResponder</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-2.showNotes"/>
|
||||
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="4.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="4.showNotes"/>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes"/>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">YES</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
|
||||
<real value="1072" key="NS.object.0"/>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
<string key="IBCocoaTouchPluginVersion">3715.3</string>
|
||||
</data>
|
||||
</archive>
|
||||
@@ -0,0 +1,694 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">1072</int>
|
||||
<string key="IBDocument.SystemVersion">13A603</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">4514</string>
|
||||
<string key="IBDocument.AppKitVersion">1265</string>
|
||||
<string key="IBDocument.HIToolboxVersion">695.00</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="NS.object.0">3746</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>IBProxyObject</string>
|
||||
<string>IBUIButton</string>
|
||||
<string>IBUIImageView</string>
|
||||
<string>IBUILabel</string>
|
||||
<string>IBUITextView</string>
|
||||
<string>IBUIView</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
</array>
|
||||
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
||||
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
||||
<integer value="1" key="NS.object.0"/>
|
||||
</object>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="386019756">
|
||||
<object class="IBProxyObject" id="567259532">
|
||||
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBProxyObject" id="839709031">
|
||||
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUIView" id="372931748">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">1298</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBUITextView" id="696726116">
|
||||
<reference key="NSNextResponder" ref="372931748"/>
|
||||
<int key="NSvFlags">1342</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrameSize">{320, 153}</string>
|
||||
<reference key="NSSuperview" ref="372931748"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="585102796"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MSAxIDEAA</bytes>
|
||||
</object>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<bool key="IBUIMultipleTouchEnabled">YES</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<string key="IBUIText"/>
|
||||
<object class="IBUITextInputTraits" key="IBUITextInputTraits">
|
||||
<int key="IBUIAutocapitalizationType">2</int>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework-SevenAndLater</string>
|
||||
</object>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||
<int key="type">1</int>
|
||||
<double key="pointSize">14</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont">
|
||||
<string key="NSName">HelveticaNeue</string>
|
||||
<double key="NSSize">14</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBUIView" id="585102796">
|
||||
<reference key="NSNextResponder" ref="372931748"/>
|
||||
<int key="NSvFlags">1324</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBUIImageView" id="906113201">
|
||||
<reference key="NSNextResponder" ref="585102796"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrameSize">{320, 50}</string>
|
||||
<reference key="NSSuperview" ref="585102796"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="303072693"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">2</int>
|
||||
<bytes key="NSRGB">MC45MzMzMzMzOTY5IDAuOTMzMzMzMzk2OSAwLjkzMzMzMzM5NjkAA</bytes>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUIButton" id="9536129">
|
||||
<reference key="NSNextResponder" ref="585102796"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{110, 3}, {55, 37}}</string>
|
||||
<reference key="NSSuperview" ref="585102796"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1034774090"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<object class="NSColor" key="IBUIHighlightedTitleColor" id="976095611">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
<object class="NSColor" key="IBUINormalTitleShadowColor" id="21496503">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC41AA</bytes>
|
||||
</object>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription" id="922318302">
|
||||
<int key="type">2</int>
|
||||
<double key="pointSize">15</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont" id="505072111">
|
||||
<string key="NSName">HelveticaNeue-Bold</string>
|
||||
<double key="NSSize">15</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBUILabel" id="636588229">
|
||||
<reference key="NSNextResponder" ref="585102796"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{271, 10}, {42, 21}}</string>
|
||||
<reference key="NSSuperview" ref="585102796"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="120761779"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<int key="IBUIContentMode">7</int>
|
||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<string key="IBUIText">Label</string>
|
||||
<object class="NSColor" key="IBUITextColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC4zMzMzMzMzMzMzAA</bytes>
|
||||
</object>
|
||||
<nil key="IBUIHighlightedColor"/>
|
||||
<int key="IBUIBaselineAdjustment">0</int>
|
||||
<float key="IBUIMinimumFontSize">10</float>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||
<int key="type">1</int>
|
||||
<double key="pointSize">17</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont">
|
||||
<string key="NSName">HelveticaNeue</string>
|
||||
<double key="NSSize">17</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBUIButton" id="1034774090">
|
||||
<reference key="NSNextResponder" ref="585102796"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{160, 5}, {58, 35}}</string>
|
||||
<reference key="NSSuperview" ref="585102796"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="463185638"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="976095611"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="21496503"/>
|
||||
<reference key="IBUIFontDescription" ref="922318302"/>
|
||||
<reference key="IBUIFont" ref="505072111"/>
|
||||
</object>
|
||||
<object class="IBUIImageView" id="463185638">
|
||||
<reference key="NSNextResponder" ref="585102796"/>
|
||||
<int key="NSvFlags">1297</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{225, 7}, {38, 35}}</string>
|
||||
<reference key="NSSuperview" ref="585102796"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="798625120"/>
|
||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUIButton" id="798625120">
|
||||
<reference key="NSNextResponder" ref="585102796"/>
|
||||
<int key="NSvFlags">1313</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{255, 1}, {18, 18}}</string>
|
||||
<reference key="NSSuperview" ref="585102796"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="636588229"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="976095611"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="21496503"/>
|
||||
<object class="NSCustomResource" key="IBUINormalBackgroundImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">UMSocialSDKResourcesNew.bundle/Buttons/UMS_delete_image_button_normal</string>
|
||||
</object>
|
||||
<reference key="IBUIFontDescription" ref="922318302"/>
|
||||
<reference key="IBUIFont" ref="505072111"/>
|
||||
</object>
|
||||
<object class="IBUILabel" id="791258016">
|
||||
<reference key="NSNextResponder" ref="585102796"/>
|
||||
<int key="NSvFlags">-2147482332</int>
|
||||
<string key="NSFrame">{{35, 14}, {60, 20}}</string>
|
||||
<reference key="NSSuperview" ref="585102796"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="9536129"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<string key="NSHuggingPriority">{251, 251}</string>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<int key="IBUIContentMode">7</int>
|
||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<string key="IBUIText"/>
|
||||
<object class="NSColor" key="IBUITextColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MCAwIDAAA</bytes>
|
||||
<string key="IBUIColorCocoaTouchKeyPath">darkTextColor</string>
|
||||
</object>
|
||||
<nil key="IBUIHighlightedColor"/>
|
||||
<int key="IBUIBaselineAdjustment">0</int>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||
<int key="type">1</int>
|
||||
<double key="pointSize">8</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont">
|
||||
<string key="NSName">HelveticaNeue</string>
|
||||
<double key="NSSize">8</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
<bool key="IBUIAdjustsFontSizeToFit">NO</bool>
|
||||
</object>
|
||||
<object class="IBUIButton" id="303072693">
|
||||
<reference key="NSNextResponder" ref="585102796"/>
|
||||
<int key="NSvFlags">-2147482332</int>
|
||||
<string key="NSFrame">{{5, 10}, {30, 30}}</string>
|
||||
<reference key="NSSuperview" ref="585102796"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="791258016"/>
|
||||
<string key="NSReuseIdentifierKey">_NS:9</string>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="21496503"/>
|
||||
<reference key="IBUIFontDescription" ref="922318302"/>
|
||||
<reference key="IBUIFont" ref="505072111"/>
|
||||
</object>
|
||||
</array>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 155}, {320, 44}}</string>
|
||||
<reference key="NSSuperview" ref="372931748"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="906113201"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
<object class="NSColorSpace" key="NSCustomColorSpace" id="957841139">
|
||||
<int key="NSID">2</int>
|
||||
</object>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUIImageView" id="120761779">
|
||||
<reference key="NSNextResponder" ref="372931748"/>
|
||||
<int key="NSvFlags">1324</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 205}, {320, 211}}</string>
|
||||
<reference key="NSSuperview" ref="372931748"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="544659853"/>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
<object class="IBUIView" id="544659853">
|
||||
<reference key="NSNextResponder" ref="372931748"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 208}, {320, 181}}</string>
|
||||
<reference key="NSSuperview" ref="372931748"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MCAwAA</bytes>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 64}, {320, 416}}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="696726116"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
<reference key="NSCustomColorSpace" ref="957841139"/>
|
||||
</object>
|
||||
<object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
|
||||
<object class="IBUISimulatedNavigationBarMetrics" key="IBUISimulatedTopBarMetrics">
|
||||
<bool key="IBUITranslucent">NO</bool>
|
||||
<bool key="IBUIPrompted">NO</bool>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<bool key="usesAutoincrementingIDs">NO</bool>
|
||||
<array class="NSMutableArray" key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">_deleteImageButton</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="798625120"/>
|
||||
</object>
|
||||
<string key="id">35</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">_shareImageButton</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="463185638"/>
|
||||
</object>
|
||||
<string key="id">33</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">atButton</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="9536129"/>
|
||||
</object>
|
||||
<string key="id">21</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">changeAccountBackgroundView</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="120761779"/>
|
||||
</object>
|
||||
<string key="id">27</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">changeAccountButton</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="1034774090"/>
|
||||
</object>
|
||||
<string key="id">23</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">changeAccountView</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="544659853"/>
|
||||
</object>
|
||||
<string key="id">26</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">countLabel</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="636588229"/>
|
||||
</object>
|
||||
<string key="id">13</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">textView</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="696726116"/>
|
||||
</object>
|
||||
<string key="id">14</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">toolBarView</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="585102796"/>
|
||||
</object>
|
||||
<string key="id">17</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">toolViewBackgroundImage</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="906113201"/>
|
||||
</object>
|
||||
<string key="id">18</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="372931748"/>
|
||||
</object>
|
||||
<string key="id">16</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">followLabel</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="791258016"/>
|
||||
</object>
|
||||
<string key="id">60r-GO-noj</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">followButton</string>
|
||||
<reference key="source" ref="567259532"/>
|
||||
<reference key="destination" ref="303072693"/>
|
||||
</object>
|
||||
<string key="id">kJT-ao-FBF</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchEventConnection" key="connection">
|
||||
<string key="label">addFollow:</string>
|
||||
<reference key="source" ref="303072693"/>
|
||||
<reference key="destination" ref="839709031"/>
|
||||
<int key="IBEventType">7</int>
|
||||
</object>
|
||||
<string key="id">wJu-xn-ETn</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">0</string>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="386019756"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-1</string>
|
||||
<reference key="object" ref="567259532"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-2</string>
|
||||
<reference key="object" ref="839709031"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">1</string>
|
||||
<reference key="object" ref="372931748"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="696726116"/>
|
||||
<reference ref="585102796"/>
|
||||
<reference ref="120761779"/>
|
||||
<reference ref="544659853"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">4</string>
|
||||
<reference key="object" ref="696726116"/>
|
||||
<reference key="parent" ref="372931748"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">10</string>
|
||||
<reference key="object" ref="585102796"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="906113201"/>
|
||||
<reference ref="9536129"/>
|
||||
<reference ref="636588229"/>
|
||||
<reference ref="1034774090"/>
|
||||
<reference ref="463185638"/>
|
||||
<reference ref="798625120"/>
|
||||
<reference ref="791258016"/>
|
||||
<reference ref="303072693"/>
|
||||
</array>
|
||||
<reference key="parent" ref="372931748"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">9</string>
|
||||
<reference key="object" ref="906113201"/>
|
||||
<reference key="parent" ref="585102796"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">19</string>
|
||||
<reference key="object" ref="9536129"/>
|
||||
<reference key="parent" ref="585102796"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">8</string>
|
||||
<reference key="object" ref="636588229"/>
|
||||
<reference key="parent" ref="585102796"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">22</string>
|
||||
<reference key="object" ref="1034774090"/>
|
||||
<reference key="parent" ref="585102796"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">32</string>
|
||||
<reference key="object" ref="463185638"/>
|
||||
<reference key="parent" ref="585102796"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">34</string>
|
||||
<reference key="object" ref="798625120"/>
|
||||
<reference key="parent" ref="585102796"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">24</string>
|
||||
<reference key="object" ref="120761779"/>
|
||||
<reference key="parent" ref="372931748"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">25</string>
|
||||
<reference key="object" ref="544659853"/>
|
||||
<reference key="parent" ref="372931748"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">AaX-8t-GAq</string>
|
||||
<reference key="object" ref="791258016"/>
|
||||
<reference key="parent" ref="585102796"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">3WK-gL-xa0</string>
|
||||
<reference key="object" ref="303072693"/>
|
||||
<reference key="parent" ref="585102796"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.CustomClassName">UMShareEditViewController</string>
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-1.showNotes"/>
|
||||
<string key="-2.CustomClassName">UIResponder</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-2.showNotes"/>
|
||||
<string key="1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="1.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="1.showNotes"/>
|
||||
<string key="10.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="10.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="10.showNotes"/>
|
||||
<string key="19.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="19.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="19.showNotes"/>
|
||||
<string key="22.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="22.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="22.showNotes"/>
|
||||
<string key="24.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="24.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="24.showNotes"/>
|
||||
<string key="25.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="25.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="25.showNotes"/>
|
||||
<string key="32.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="32.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="32.showNotes"/>
|
||||
<string key="34.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="34.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="34.showNotes"/>
|
||||
<string key="3WK-gL-xa0.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="4.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="4.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="4.showNotes"/>
|
||||
<string key="8.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="8.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="8.showNotes"/>
|
||||
<string key="9.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="9.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="9.showNotes"/>
|
||||
<string key="AaX-8t-GAq.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UMShareEditViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="addFollow:">id</string>
|
||||
<string key="showFriendList">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="addFollow:">
|
||||
<string key="name">addFollow:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="showFriendList">
|
||||
<string key="name">showFriendList</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="_deleteImageButton">UIButton</string>
|
||||
<string key="_shareImageButton">UIImageView</string>
|
||||
<string key="atButton">UIButton</string>
|
||||
<string key="changeAccountBackgroundView">UIImageView</string>
|
||||
<string key="changeAccountButton">UIButton</string>
|
||||
<string key="changeAccountView">UIView</string>
|
||||
<string key="countLabel">UILabel</string>
|
||||
<string key="followButton">UIButton</string>
|
||||
<string key="followLabel">UILabel</string>
|
||||
<string key="textView">UITextView</string>
|
||||
<string key="toolBarView">UIView</string>
|
||||
<string key="toolViewBackgroundImage">UIImageView</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="_deleteImageButton">
|
||||
<string key="name">_deleteImageButton</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="_shareImageButton">
|
||||
<string key="name">_shareImageButton</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="atButton">
|
||||
<string key="name">atButton</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="changeAccountBackgroundView">
|
||||
<string key="name">changeAccountBackgroundView</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="changeAccountButton">
|
||||
<string key="name">changeAccountButton</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="changeAccountView">
|
||||
<string key="name">changeAccountView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="countLabel">
|
||||
<string key="name">countLabel</string>
|
||||
<string key="candidateClassName">UILabel</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="followButton">
|
||||
<string key="name">followButton</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="followLabel">
|
||||
<string key="name">followLabel</string>
|
||||
<string key="candidateClassName">UILabel</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="textView">
|
||||
<string key="name">textView</string>
|
||||
<string key="candidateClassName">UITextView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolBarView">
|
||||
<string key="name">toolBarView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolViewBackgroundImage">
|
||||
<string key="name">toolViewBackgroundImage</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">./Classes/UMShareEditViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">YES</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
|
||||
<real value="1072" key="NS.object.0"/>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
<object class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
|
||||
<string key="NS.key.0">UMSocialSDKResourcesNew.bundle/Buttons/UMS_delete_image_button_normal</string>
|
||||
<string key="NS.object.0">{16, 16}</string>
|
||||
</object>
|
||||
<string key="IBCocoaTouchPluginVersion">3746</string>
|
||||
</data>
|
||||
</archive>
|
||||
@@ -0,0 +1,730 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<archive type="com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB" version="8.00">
|
||||
<data>
|
||||
<int key="IBDocument.SystemTarget">1072</int>
|
||||
<string key="IBDocument.SystemVersion">14A389</string>
|
||||
<string key="IBDocument.InterfaceBuilderVersion">6245</string>
|
||||
<string key="IBDocument.AppKitVersion">1343.14</string>
|
||||
<string key="IBDocument.HIToolboxVersion">755.00</string>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<string key="NS.object.0">6238</string>
|
||||
</object>
|
||||
<array key="IBDocument.IntegratedClassDependencies">
|
||||
<string>IBProxyObject</string>
|
||||
<string>IBUIButton</string>
|
||||
<string>IBUIImageView</string>
|
||||
<string>IBUILabel</string>
|
||||
<string>IBUITextView</string>
|
||||
<string>IBUIView</string>
|
||||
</array>
|
||||
<array key="IBDocument.PluginDependencies">
|
||||
<string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
</array>
|
||||
<object class="NSMutableDictionary" key="IBDocument.Metadata">
|
||||
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
|
||||
<integer value="1" key="NS.object.0"/>
|
||||
</object>
|
||||
<array class="NSMutableArray" key="IBDocument.RootObjects" id="758157197">
|
||||
<object class="IBProxyObject" id="735695849">
|
||||
<string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
<object class="IBProxyObject" id="32313907">
|
||||
<string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
<object class="IBUIView" id="293554009">
|
||||
<reference key="NSNextResponder"/>
|
||||
<int key="NSvFlags">1314</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBUITextView" id="96052715">
|
||||
<reference key="NSNextResponder" ref="293554009"/>
|
||||
<int key="NSvFlags">1314</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrameSize">{535, 236}</string>
|
||||
<reference key="NSSuperview" ref="293554009"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="579088321"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MSAxIDEAA</bytes>
|
||||
</object>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<bool key="IBUIMultipleTouchEnabled">YES</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<bool key="IBUIShowsHorizontalScrollIndicator">NO</bool>
|
||||
<string key="IBUIText">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda.</string>
|
||||
<object class="IBUITextInputTraits" key="IBUITextInputTraits">
|
||||
<int key="IBUIAutocapitalizationType">2</int>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework-SevenAndLater</string>
|
||||
</object>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||
<int key="type">1</int>
|
||||
<double key="pointSize">14</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont">
|
||||
<string key="NSName">HelveticaNeue</string>
|
||||
<double key="NSSize">14</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBUIView" id="579088321">
|
||||
<reference key="NSNextResponder" ref="293554009"/>
|
||||
<int key="NSvFlags">1318</int>
|
||||
<array class="NSMutableArray" key="NSSubviews">
|
||||
<object class="IBUIImageView" id="1562858">
|
||||
<reference key="NSNextResponder" ref="579088321"/>
|
||||
<int key="NSvFlags">1314</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrameSize">{550, 47}</string>
|
||||
<reference key="NSSuperview" ref="579088321"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="142983915"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">2</int>
|
||||
<bytes key="NSRGB">MC45MzMzMzMzOTY5IDAuOTMzMzMzMzk2OSAwLjkzMzMzMzM5NjkAA</bytes>
|
||||
</object>
|
||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
<object class="IBUIButton" id="142983915">
|
||||
<reference key="NSNextResponder" ref="579088321"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{13, 5}, {55, 37}}</string>
|
||||
<reference key="NSSuperview" ref="579088321"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1028626187"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<object class="NSColor" key="IBUIHighlightedTitleColor" id="516020420">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
</object>
|
||||
<object class="NSColor" key="IBUINormalTitleShadowColor" id="395880481">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC41AA</bytes>
|
||||
</object>
|
||||
<object class="NSCustomResource" key="IBUINormalImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at.png</string>
|
||||
</object>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription" id="571589452">
|
||||
<int key="type">2</int>
|
||||
<double key="pointSize">15</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont" id="535124724">
|
||||
<string key="NSName">HelveticaNeue-Bold</string>
|
||||
<double key="NSSize">15</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBUILabel" id="40098382">
|
||||
<reference key="NSNextResponder" ref="579088321"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{471, 13}, {42, 21}}</string>
|
||||
<reference key="NSSuperview" ref="579088321"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="265980507"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<bool key="IBUIClipsSubviews">YES</bool>
|
||||
<int key="IBUIContentMode">7</int>
|
||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<string key="IBUIText">Label</string>
|
||||
<object class="NSColor" key="IBUITextColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MC42NjY2NjY2NjY3AA</bytes>
|
||||
</object>
|
||||
<nil key="IBUIHighlightedColor"/>
|
||||
<int key="IBUIBaselineAdjustment">0</int>
|
||||
<float key="IBUIMinimumFontSize">10</float>
|
||||
<object class="IBUIFontDescription" key="IBUIFontDescription">
|
||||
<int key="type">1</int>
|
||||
<double key="pointSize">17</double>
|
||||
</object>
|
||||
<object class="NSFont" key="IBUIFont">
|
||||
<string key="NSName">HelveticaNeue</string>
|
||||
<double key="NSSize">17</double>
|
||||
<int key="NSfFlags">16</int>
|
||||
</object>
|
||||
<bool key="useAutomaticPreferredMaxLayoutWidth">YES</bool>
|
||||
</object>
|
||||
<object class="IBUIButton" id="1028626187">
|
||||
<reference key="NSNextResponder" ref="579088321"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{76, 6}, {65, 36}}</string>
|
||||
<reference key="NSSuperview" ref="579088321"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="823173352"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="516020420"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="395880481"/>
|
||||
<reference key="IBUIFontDescription" ref="571589452"/>
|
||||
<reference key="IBUIFont" ref="535124724"/>
|
||||
</object>
|
||||
<object class="IBUIImageView" id="823173352">
|
||||
<reference key="NSNextResponder" ref="579088321"/>
|
||||
<int key="NSvFlags">1313</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{421, 5}, {37, 37}}</string>
|
||||
<reference key="NSSuperview" ref="579088321"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="361456346"/>
|
||||
<bool key="IBUIUserInteractionEnabled">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
<object class="IBUIButton" id="361456346">
|
||||
<reference key="NSNextResponder" ref="579088321"/>
|
||||
<int key="NSvFlags">1313</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{448, 1}, {18, 18}}</string>
|
||||
<reference key="NSSuperview" ref="579088321"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="40098382"/>
|
||||
<bool key="IBUIOpaque">NO</bool>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<int key="IBUIContentHorizontalAlignment">0</int>
|
||||
<int key="IBUIContentVerticalAlignment">0</int>
|
||||
<object class="NSColor" key="IBUINormalTitleColor">
|
||||
<int key="NSColorSpace">1</int>
|
||||
<bytes key="NSRGB">MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA</bytes>
|
||||
</object>
|
||||
<reference key="IBUIHighlightedTitleColor" ref="516020420"/>
|
||||
<reference key="IBUINormalTitleShadowColor" ref="395880481"/>
|
||||
<object class="NSCustomResource" key="IBUINormalBackgroundImage">
|
||||
<string key="NSClassName">NSImage</string>
|
||||
<string key="NSResourceName">UMSocialSDKResourcesNew.bundle/Buttons/UMS_delete_image_button_normal</string>
|
||||
</object>
|
||||
<reference key="IBUIFontDescription" ref="571589452"/>
|
||||
<reference key="IBUIFont" ref="535124724"/>
|
||||
</object>
|
||||
</array>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 244}, {550, 47}}</string>
|
||||
<reference key="NSSuperview" ref="293554009"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1562858"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
<object class="NSColorSpace" key="NSCustomColorSpace" id="515829448">
|
||||
<int key="NSID">2</int>
|
||||
</object>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
<object class="IBUIImageView" id="265980507">
|
||||
<reference key="NSNextResponder" ref="293554009"/>
|
||||
<int key="NSvFlags">1302</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{0, 289}, {550, 217}}</string>
|
||||
<reference key="NSSuperview" ref="293554009"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="1041543585"/>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
<object class="IBUIView" id="1041543585">
|
||||
<reference key="NSNextResponder" ref="293554009"/>
|
||||
<int key="NSvFlags">1316</int>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrame">{{112, 289}, {309, 135}}</string>
|
||||
<reference key="NSSuperview" ref="293554009"/>
|
||||
<reference key="NSWindow"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MCAwAA</bytes>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="NSPSMatrix" key="NSFrameMatrix"/>
|
||||
<string key="NSFrameSize">{540, 506}</string>
|
||||
<reference key="NSSuperview"/>
|
||||
<reference key="NSWindow"/>
|
||||
<reference key="NSNextKeyView" ref="96052715"/>
|
||||
<object class="NSColor" key="IBUIBackgroundColor">
|
||||
<int key="NSColorSpace">3</int>
|
||||
<bytes key="NSWhite">MQA</bytes>
|
||||
<reference key="NSCustomColorSpace" ref="515829448"/>
|
||||
</object>
|
||||
<object class="IBUISimulatedSizeMetrics" key="IBUISimulatedDestinationMetrics">
|
||||
<string key="IBUISimulatedSizeMetricsClass">IBUISimulatedFreeformSizeMetricsSentinel</string>
|
||||
<string key="IBUIDisplayName">Freeform</string>
|
||||
</object>
|
||||
<string key="targetRuntimeIdentifier">IBIPadFramework</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBObjectContainer" key="IBDocument.Objects">
|
||||
<bool key="usesAutoincrementingIDs">NO</bool>
|
||||
<array key="connectionRecords">
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">_deleteImageButton</string>
|
||||
<reference key="source" ref="735695849"/>
|
||||
<reference key="destination" ref="361456346"/>
|
||||
</object>
|
||||
<string key="id">511</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">_shareImageButton</string>
|
||||
<reference key="source" ref="735695849"/>
|
||||
<reference key="destination" ref="823173352"/>
|
||||
</object>
|
||||
<string key="id">510</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">atButton</string>
|
||||
<reference key="source" ref="735695849"/>
|
||||
<reference key="destination" ref="142983915"/>
|
||||
</object>
|
||||
<string key="id">224</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">changeAccountBackgroundView</string>
|
||||
<reference key="source" ref="735695849"/>
|
||||
<reference key="destination" ref="265980507"/>
|
||||
</object>
|
||||
<string key="id">506</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">changeAccountButton</string>
|
||||
<reference key="source" ref="735695849"/>
|
||||
<reference key="destination" ref="1028626187"/>
|
||||
</object>
|
||||
<string key="id">503</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">changeAccountView</string>
|
||||
<reference key="source" ref="735695849"/>
|
||||
<reference key="destination" ref="1041543585"/>
|
||||
</object>
|
||||
<string key="id">507</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">countLabel</string>
|
||||
<reference key="source" ref="735695849"/>
|
||||
<reference key="destination" ref="40098382"/>
|
||||
</object>
|
||||
<string key="id">226</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">textView</string>
|
||||
<reference key="source" ref="735695849"/>
|
||||
<reference key="destination" ref="96052715"/>
|
||||
</object>
|
||||
<string key="id">236</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">toolBarView</string>
|
||||
<reference key="source" ref="735695849"/>
|
||||
<reference key="destination" ref="579088321"/>
|
||||
</object>
|
||||
<string key="id">223</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">toolViewBackgroundImage</string>
|
||||
<reference key="source" ref="735695849"/>
|
||||
<reference key="destination" ref="1562858"/>
|
||||
</object>
|
||||
<string key="id">328</string>
|
||||
</object>
|
||||
<object class="IBConnectionRecord">
|
||||
<object class="IBCocoaTouchOutletConnection" key="connection">
|
||||
<string key="label">view</string>
|
||||
<reference key="source" ref="735695849"/>
|
||||
<reference key="destination" ref="293554009"/>
|
||||
</object>
|
||||
<string key="id">316</string>
|
||||
</object>
|
||||
</array>
|
||||
<object class="IBMutableOrderedSet" key="objectRecords">
|
||||
<array key="orderedObjects">
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">0</string>
|
||||
<array key="object" id="0"/>
|
||||
<reference key="children" ref="758157197"/>
|
||||
<nil key="parent"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-1</string>
|
||||
<reference key="object" ref="735695849"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
<string key="objectName">File's Owner</string>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">-2</string>
|
||||
<reference key="object" ref="32313907"/>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">202</string>
|
||||
<reference key="object" ref="293554009"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="96052715"/>
|
||||
<reference ref="579088321"/>
|
||||
<reference ref="1041543585"/>
|
||||
<reference ref="265980507"/>
|
||||
</array>
|
||||
<reference key="parent" ref="0"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">227</string>
|
||||
<reference key="object" ref="96052715"/>
|
||||
<reference key="parent" ref="293554009"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">203</string>
|
||||
<reference key="object" ref="579088321"/>
|
||||
<array class="NSMutableArray" key="children">
|
||||
<reference ref="1562858"/>
|
||||
<reference ref="142983915"/>
|
||||
<reference ref="40098382"/>
|
||||
<reference ref="1028626187"/>
|
||||
<reference ref="823173352"/>
|
||||
<reference ref="361456346"/>
|
||||
</array>
|
||||
<reference key="parent" ref="293554009"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">207</string>
|
||||
<reference key="object" ref="1562858"/>
|
||||
<reference key="parent" ref="579088321"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">205</string>
|
||||
<reference key="object" ref="142983915"/>
|
||||
<reference key="parent" ref="579088321"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">206</string>
|
||||
<reference key="object" ref="40098382"/>
|
||||
<reference key="parent" ref="579088321"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">502</string>
|
||||
<reference key="object" ref="1028626187"/>
|
||||
<reference key="parent" ref="579088321"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">508</string>
|
||||
<reference key="object" ref="823173352"/>
|
||||
<reference key="parent" ref="579088321"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">509</string>
|
||||
<reference key="object" ref="361456346"/>
|
||||
<reference key="parent" ref="579088321"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">504</string>
|
||||
<reference key="object" ref="265980507"/>
|
||||
<reference key="parent" ref="293554009"/>
|
||||
</object>
|
||||
<object class="IBObjectRecord">
|
||||
<string key="id">505</string>
|
||||
<reference key="object" ref="1041543585"/>
|
||||
<reference key="parent" ref="293554009"/>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<dictionary class="NSMutableDictionary" key="flattenedProperties">
|
||||
<string key="-1.CustomClassName">UMShareEditViewController</string>
|
||||
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-1.showNotes"/>
|
||||
<string key="-2.CustomClassName">UIResponder</string>
|
||||
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<boolean value="NO" key="-2.showNotes"/>
|
||||
<string key="202.IBPersistedLastKnownCanvasPosition">{229, 216}</string>
|
||||
<string key="202.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="202.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="202.showNotes"/>
|
||||
<string key="203.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="203.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="203.showNotes"/>
|
||||
<string key="205.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="205.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="205.showNotes"/>
|
||||
<string key="206.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="206.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="206.showNotes"/>
|
||||
<string key="207.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="207.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="207.showNotes"/>
|
||||
<string key="227.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="227.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="227.showNotes"/>
|
||||
<string key="502.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="502.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="502.showNotes"/>
|
||||
<string key="504.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="504.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="504.showNotes"/>
|
||||
<string key="505.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="505.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="505.showNotes"/>
|
||||
<string key="508.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="508.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="508.showNotes"/>
|
||||
<string key="509.IBPluginDependency">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
|
||||
<reference key="509.IBUserGuides" ref="0"/>
|
||||
<boolean value="NO" key="509.showNotes"/>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
|
||||
<nil key="activeLocalization"/>
|
||||
<dictionary class="NSMutableDictionary" key="localizations"/>
|
||||
<nil key="sourceID"/>
|
||||
</object>
|
||||
<object class="IBClassDescriber" key="IBDocument.Classes">
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptions">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UMShareEditViewController</string>
|
||||
<string key="superclassName">UIViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="addFollow:">id</string>
|
||||
<string key="showFriendList">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="addFollow:">
|
||||
<string key="name">addFollow:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="showFriendList">
|
||||
<string key="name">showFriendList</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="outlets">
|
||||
<string key="_deleteImageButton">UIButton</string>
|
||||
<string key="_shareImageButton">UIImageView</string>
|
||||
<string key="atButton">UIButton</string>
|
||||
<string key="changeAccountBackgroundView">UIImageView</string>
|
||||
<string key="changeAccountButton">UIButton</string>
|
||||
<string key="changeAccountView">UIView</string>
|
||||
<string key="countLabel">UILabel</string>
|
||||
<string key="followButton">UIButton</string>
|
||||
<string key="followLabel">UILabel</string>
|
||||
<string key="textView">UITextView</string>
|
||||
<string key="toolBarView">UIView</string>
|
||||
<string key="toolViewBackgroundImage">UIImageView</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="toOneOutletInfosByName">
|
||||
<object class="IBToOneOutletInfo" key="_deleteImageButton">
|
||||
<string key="name">_deleteImageButton</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="_shareImageButton">
|
||||
<string key="name">_shareImageButton</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="atButton">
|
||||
<string key="name">atButton</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="changeAccountBackgroundView">
|
||||
<string key="name">changeAccountBackgroundView</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="changeAccountButton">
|
||||
<string key="name">changeAccountButton</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="changeAccountView">
|
||||
<string key="name">changeAccountView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="countLabel">
|
||||
<string key="name">countLabel</string>
|
||||
<string key="candidateClassName">UILabel</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="followButton">
|
||||
<string key="name">followButton</string>
|
||||
<string key="candidateClassName">UIButton</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="followLabel">
|
||||
<string key="name">followLabel</string>
|
||||
<string key="candidateClassName">UILabel</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="textView">
|
||||
<string key="name">textView</string>
|
||||
<string key="candidateClassName">UITextView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolBarView">
|
||||
<string key="name">toolBarView</string>
|
||||
<string key="candidateClassName">UIView</string>
|
||||
</object>
|
||||
<object class="IBToOneOutletInfo" key="toolViewBackgroundImage">
|
||||
<string key="name">toolViewBackgroundImage</string>
|
||||
<string key="candidateClassName">UIImageView</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SocialSDK/UI/UMShareEditViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UMShareEditViewController</string>
|
||||
<dictionary class="NSMutableDictionary" key="actions">
|
||||
<string key="addFollow:">id</string>
|
||||
<string key="showFriendList">id</string>
|
||||
</dictionary>
|
||||
<dictionary class="NSMutableDictionary" key="actionInfosByName">
|
||||
<object class="IBActionInfo" key="addFollow:">
|
||||
<string key="name">addFollow:</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
<object class="IBActionInfo" key="showFriendList">
|
||||
<string key="name">showFriendList</string>
|
||||
<string key="candidateClassName">id</string>
|
||||
</object>
|
||||
</dictionary>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBProjectSource</string>
|
||||
<string key="minorKey">../SocialSDK/UI/UMShareEditViewController.m</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
<array class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UIButton</string>
|
||||
<string key="superclassName">UIControl</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">UIKit.framework/Headers/UIButton.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UIControl</string>
|
||||
<string key="superclassName">UIView</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">UIKit.framework/Headers/UIControl.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UIGestureRecognizer</string>
|
||||
<string key="superclassName">NSObject</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">UIKit.framework/Headers/UIGestureRecognizer.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UIImageView</string>
|
||||
<string key="superclassName">UIView</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">UIKit.framework/Headers/UIImageView.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UILabel</string>
|
||||
<string key="superclassName">UIView</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">UIKit.framework/Headers/UILabel.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UIResponder</string>
|
||||
<string key="superclassName">NSObject</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UIScrollView</string>
|
||||
<string key="superclassName">UIView</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">UIKit.framework/Headers/UIScrollView.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UISearchBar</string>
|
||||
<string key="superclassName">UIView</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UISearchDisplayController</string>
|
||||
<string key="superclassName">NSObject</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UITextView</string>
|
||||
<string key="superclassName">UIScrollView</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">UIKit.framework/Headers/UITextView.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UIView</string>
|
||||
<string key="superclassName">UIResponder</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">UIKit.framework/Headers/UIView.h</string>
|
||||
</object>
|
||||
</object>
|
||||
<object class="IBPartialClassDescription">
|
||||
<string key="className">UIViewController</string>
|
||||
<string key="superclassName">UIResponder</string>
|
||||
<object class="IBClassDescriptionSource" key="sourceIdentifier">
|
||||
<string key="majorKey">IBFrameworkSource</string>
|
||||
<string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
|
||||
</object>
|
||||
</object>
|
||||
</array>
|
||||
</object>
|
||||
<int key="IBDocument.localizationMode">0</int>
|
||||
<string key="IBDocument.TargetRuntimeIdentifier">IBIPadFramework</string>
|
||||
<bool key="IBDocument.previouslyAttemptedUpgradeToXcode5">YES</bool>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
|
||||
<real value="1072" key="NS.object.0"/>
|
||||
</object>
|
||||
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
|
||||
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
|
||||
<integer value="4600" key="NS.object.0"/>
|
||||
</object>
|
||||
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
|
||||
<int key="IBDocument.defaultPropertyAccessControl">3</int>
|
||||
<dictionary class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
|
||||
<string key="UMSocialSDKResourcesNew.bundle/Buttons/UMS_delete_image_button_normal">{16, 16}</string>
|
||||
<string key="UMSocialSDKResourcesNew.bundle/Buttons/UMS_umeng_share_at.png">{16, 16}</string>
|
||||
</dictionary>
|
||||
</data>
|
||||
</archive>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 671 B |
|
After Width: | Height: | Size: 704 B |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 575 B |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 197 B |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 134 B |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 403 B |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 250 B |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 713 B |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 689 B |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 839 B |
|
After Width: | Height: | Size: 930 B |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 774 B |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 775 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 846 B |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 858 B |
|
After Width: | Height: | Size: 972 B |
|
After Width: | Height: | Size: 971 B |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 886 B |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 888 B |
|
After Width: | Height: | Size: 3.4 KiB |
|
After Width: | Height: | Size: 178 B |
|
After Width: | Height: | Size: 202 B |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 4.2 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 772 B |