今天设计又给了几个界面的标注,要求完善UI,其中就包括分享界面,于是我立即询问shareSDK的技术支持(找到shareSDK的官网,然后点击企业QQ就可以询问了),技术支持给的解释是,如果要用shareSDK自带的UI,分享界面是不能修改的,只能更改分享平台的小图标和小图标下面的文字,如果非要更改分享界面,只能自己画UI,然后调用shareSDK的无UI分享方法。shareSDK技术支持给了一个链接,让我参考,点击进入,于是我自定义了一个分享类,然后只需要在分享事件的方法中构建分享内容publishContent,
传入[ShareCustom shareWithContent:publishContent];即可
下面是设计给的标注图以及我做出来的效果图:
下面是实现代码:(我自定义了一个专门分享的类)
//下面是.h文件
// Copyright (c) 2015年 yanhong. All rights reserved.
//
#import
/*
自定义的分享类,使用的是类方法,其他地方只要 构造分享内容publishContent就行了
*/
@interface ShareCustom : NSObject
+(void)shareWithContent:(id)publishContent;//自定义分享界面
@end
//下面是.m文件
// Copyright (c) 2015年 yanhong. All rights reserved.
//
#import "ShareCustom.h"
#import
#import
//设备物理大小
#define kScreenWidth [UIScreen mainScreen].bounds.size.width
#define kScreenHeight [UIScreen mainScreen].bounds.size.height
#define SYSTEM_VERSION [[UIDevice currentDevice].systemVersion floatValue]
//屏幕宽度相对iPhone6屏幕宽度的比例
#define KWidth_Scale [UIScreen mainScreen].bounds.size.width/375.0f
@implementation ShareCustom
static id _publishContent;//类方法中的全局变量这样用(类型前面加static)
/*
自定义的分享类,使用的是类方法,其他地方只要 构造分享内容publishContent就行了
*/
+(void)shareWithContent:(id)publishContent/*只需要在分享按钮事件中 构建好分享内容publishContent传过来就好了*/
{
_publishContent = publishContent;
UIWindow *window = [UIApplication sharedApplication].keyWindow;
UIView *blackView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, kScreenHeight)];
blackView.backgroundColor = [UIColor colorWithString:@"000000" Alpha:0.85f];
blackView.tag = 440;
[window addSubview:blackView];
UIView *shareView = [[UIView alloc] initWithFrame:CGRectMake((kScreenWidth-300*KWidth_Scale)/2.0f, (kScreenHeight-270*KWidth_Scale)/2.0f, 300*KWidth_Scale, 270*KWidth_Scale)];
shareView.backgroundColor = [UIColor colorWithString:@"f6f6f6"];
shareView.tag = 441;
[window addSubview:shareView];
UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, shareView.width, 45*KWidth_Scale)];
titleLabel.text = @"分享到";
titleLabel.textAlignment = NSTextAlignmentCenter;
titleLabel.font = [UIFont systemFontOfSize:15*KWidth_Scale];
titleLabel.textColor = [UIColor colorWithString:@"2a2a2a"];
titleLabel.backgroundColor = [UIColor clearColor];
[shareView addSubview:titleLabel];
NSArray *btnImages = @[@"IOS-微信@2x.png", @"IOS-朋友圈@2x.png", @"[email protected]", @"IOS-空间@2x.png", @"IOS-微信收藏@2x.png", @"IOS-微博@2x.png", @"IOS-豆瓣@2x.png", @"IOS-短信@2x.png"];
NSArray *btnTitles = @[@"微信好友", @"微信朋友圈", @"QQ好友", @"QQ空间", @"微信收藏", @"新浪微博", @"豆瓣", @"短信"];
for (NSInteger i=0; i<8; i++) {
CGFloat top = 0.0f;
if (i<4) {
top = 10*KWidth_Scale;
}else{
top = 90*KWidth_Scale;
}
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(10*KWidth_Scale+(i%4)*70*KWidth_Scale, titleLabel.bottom+top, 70*KWidth_Scale, 70*KWidth_Scale)];
[button setImage:[UIImage imageNamed:btnImages[i]] forState:UIControlStateNormal];
[button setTitle:btnTitles[i] forState:UIControlStateNormal];
button.titleLabel.font = [UIFont systemFontOfSize:11*KWidth_Scale];
button.titleLabel.textAlignment = NSTextAlignmentCenter;
[button setTitleColor:[UIColor colorWithString:@"2a2a2a"] forState:UIControlStateNormal];
[button setContentHorizontalAlignment:UIControlContentHorizontalAlignmentCenter];
[button setContentVerticalAlignment:UIControlContentVerticalAlignmentTop];
[button setImageEdgeInsets:UIEdgeInsetsMake(0, 15*KWidth_Scale, 30*KWidth_Scale, 15*KWidth_Scale)];
if (SYSTEM_VERSION >= 8.0f) {
[button setTitleEdgeInsets:UIEdgeInsetsMake(45*KWidth_Scale, -40*KWidth_Scale, 5*KWidth_Scale, 0)];
}else{
[button setTitleEdgeInsets:UIEdgeInsetsMake(45*KWidth_Scale, -90*KWidth_Scale, 5*KWidth_Scale, 0)];
}
button.tag = 331+i;
[button addTarget:self action:@selector(shareBtnClick:) forControlEvents:UIControlEventTouchUpInside];
[shareView addSubview:button];
}
UIButton *cancleBtn = [[UIButton alloc] initWithFrame:CGRectMake((shareView.width-40*KWidth_Scale)/2.0f, shareView.height-40*KWidth_Scale-18*KWidth_Scale, 40*KWidth_Scale, 40*KWidth_Scale)];
[cancleBtn setBackgroundImage:[UIImage imageNamed:@"IOS-取消@2x.png"] forState:UIControlStateNormal];
cancleBtn.tag = 339;
[cancleBtn addTarget:self action:@selector(shareBtnClick:) forControlEvents:UIControlEventTouchUpInside];
[shareView addSubview:cancleBtn];
//为了弹窗不那么生硬,这里加了个简单的动画
shareView.transform = CGAffineTransformMakeScale(1/300.0f, 1/270.0f);
blackView.alpha = 0;
[UIView animateWithDuration:0.35f animations:^{
shareView.transform = CGAffineTransformMakeScale(1, 1);
blackView.alpha = 1;
} completion:^(BOOL finished) {
}];
}
+(void)shareBtnClick:(UIButton *)btn
{
// NSLog(@"%@",[ShareSDK version]);
UIWindow *window = [UIApplication sharedApplication].keyWindow;
UIView *blackView = [window viewWithTag:440];
UIView *shareView = [window viewWithTag:441];
//为了弹窗不那么生硬,这里加了个简单的动画
shareView.transform = CGAffineTransformMakeScale(1, 1);
[UIView animateWithDuration:0.35f animations:^{
shareView.transform = CGAffineTransformMakeScale(1/300.0f, 1/270.0f);
blackView.alpha = 0;
} completion:^(BOOL finished) {
[shareView removeFromSuperview];
[blackView removeFromSuperview];
}];
int shareType = 0;
id publishContent = _publishContent;
switch (btn.tag) {
case 331:
{
shareType = ShareTypeWeixiSession;
}
break;
case 332:
{
shareType = ShareTypeWeixiTimeline;
}
break;
case 333:
{
shareType = ShareTypeQQ;
}
break;
case 334:
{
shareType = ShareTypeQQSpace;
}
break;
case 335:
{
shareType = ShareTypeWeixiFav;
}
break;
case 336:
{
shareType = ShareTypeSinaWeibo;
}
break;
case 337:
{
shareType = ShareTypeDouBan;
}
break;
case 338:
{
shareType = ShareTypeSMS;
}
break;
case 339:
{
}
break;
default:
break;
}
/*
调用shareSDK的无UI分享类型,
链接地址:http://bbs.mob.com/forum.php?mod=viewthread&tid=110&extra=page%3D1%26filter%3Dtypeid%26typeid%3D34
*/
[ShareSDK showShareViewWithType:shareType container:nil content:publishContent statusBarTips:YES authOptions:nil shareOptions:nil result:^(ShareType type, SSResponseState state, id statusInfo, id error, BOOL end) {
if (state == SSResponseStateSuccess)
{
// NSLog(NSLocalizedString(@"TEXT_ShARE_SUC", @"分享成功"));
}
else if (state == SSResponseStateFail)
{
UIAlertView * alert = [[UIAlertView alloc]initWithTitle:@"" message:@"未检测到客户端 分享失败" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
[alert show];
// NSLog(NSLocalizedString(@"TEXT_ShARE_FAI", @"分享失败,错误码:%d,错误描述:%@"), [error errorCode], [error errorDescription]);
}
}];
}
@end
//构造分享内容
id publishContent = [ShareSDK content:str1
defaultContent:str1
image:nil
title:@" "
url:urlString
description:str1
mediaType:SSPublishContentMediaTypeText];
//调用自定义分享
[ShareCustom shareWithContent:publishContent];