-
Notifications
You must be signed in to change notification settings - Fork 2
/
LShareTools.m
424 lines (296 loc) · 11 KB
/
LShareTools.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
//
// LShareView.m
// CustomNewProject
//
// Created by lichaowei on 14/12/12.
// Copyright (c) 2014年 FBLIFE. All rights reserved.
//
#import "LShareTools.h"
#import "ShareView.h"
#import "WeiboSDK.h"
#import "WXApi.h"
#import "WXApiObject.h"
#import "AppDelegate.h"
#import "ZSNAlertView.h"
#import "LogInViewController.h"
@implementation LShareTools
+ (id)shareInstance
{
static dispatch_once_t once_t;
static LShareTools *dataBlock;
dispatch_once(&once_t, ^{
dataBlock = [[LShareTools alloc]init];
});
return dataBlock;
}
-(instancetype)init
{
self = [super init];
if (self) {
__weak typeof(self)wself=self;
if (!_shareView) {
_shareView =[[ShareView alloc]initWithFrame:CGRectMake(0, 0, 0, 0) thebloc:^(NSInteger indexPath) {
NSLog(@"xxx==%d",indexPath);
[wself clickedButtonAtIndex:indexPath];
}];
}
// [_shareView ShareViewShow];
}
return self;
}
- (void)showOrHidden:(BOOL)show
title:(NSString *)atitle
description:(NSString *)description
imageUrl:(NSString *)aimageUrl
aShareImage:(UIImage *)aImage
linkUrl:(NSString *)linkUrl
isNativeImage:(BOOL)isNative
{
_title = atitle;
_description = description;
_imageUrl = aimageUrl;
_aShareImage = aImage;
_linkUrl = linkUrl;
_isNativeImage = isNative;
if (show) {
[_shareView ShareViewShow];
}else
{
[_shareView shareviewHiden];
}
}
/**
* 一键分享
*/
- (void)shareToPlat:(ShareStyle)shareStyle
title:(NSString *)atitle
description:(NSString *)description
imageUrl:(NSString *)aimageUrl
aShareImage:(UIImage *)aImage
linkUrl:(NSString *)linkUrl
{
_title = atitle;
_description = description;
_imageUrl = aimageUrl;
_aShareImage = aImage;
_linkUrl = linkUrl;
// [_shareView shareviewHiden];
switch (shareStyle) {
case ShareToWeibo:
{
[self clickedButtonAtIndex:3];
}
break;
case ShareToPengyouquan:
{
[self clickedButtonAtIndex:2];
}
break;
case ShareToWeixin:
{
[self clickedButtonAtIndex:1];
}
break;
default:
break;
}
}
-(void)clickedButtonAtIndex:(NSInteger)buttonIndex{
if(buttonIndex==0){
[MobClick event:@"LShareTools_ziliudi"];
NSLog(@"自留地");
BOOL isLogIn = [[NSUserDefaults standardUserDefaults] boolForKey:USER_IN];
if (!isLogIn)
{
// UIViewController *root = ((AppDelegate *)[UIApplication sharedApplication].delegate).window.rootViewController;
// LogInViewController * logInVC = [[LogInViewController alloc] init];
//
// [root presentViewController:logInVC animated:YES completion:nil];
NewLogInView * loginView = [[NewLogInView alloc] initWithFrame:CGRectMake(0,0,DEVICE_WIDTH,DEVICE_HEIGHT)];
loginView.backgroundColor = [UIColor colorWithPatternImage:[ZSNApi screenShot]];
[[UIApplication sharedApplication].keyWindow addSubview:loginView];
return;
}
ZSNAlertView * alertView = [[ZSNAlertView alloc] init];
[alertView setInformationWithImageUrl:_imageUrl WithShareUrl:_linkUrl WithUserName:_title WithContent:_description WithBlock:^(NSString *theString) {
}];
[alertView show];
}
else if(buttonIndex==4){
[MobClick event:@"LShareTools_youxiang"];
NSLog(@"分享到邮箱");
NSString *string_bodyofemail=[NSString stringWithFormat:@"%@ \n %@ \n\n 下载改装志客户端 http://mobile.fblife.com",_title,_linkUrl] ;
[self shareToEmail:string_bodyofemail];
}else if(buttonIndex == 1 || buttonIndex == 2 || buttonIndex == 3){
[MobClick event:@"LShareTools_weixin"];
NSLog(@"1分享给微信好友");
NSLog(@"2分享给微信朋友圈");
NSLog(@"3到新浪微博界面的");
if (_isNativeImage) {
[self shareWithNativeImage:_aShareImage buttonIndex:buttonIndex];
}else
{
[self shareWithImageUrl:_imageUrl buttonIndex:buttonIndex];
}
}
//分享编辑页面的接口
}
/**
* 分享本地with本地图片
*/
- (void)shareWithNativeImage:(UIImage *)shareImage buttonIndex:(int)buttonIndex
{
NSData *data = [self thumbDataWithImage:shareImage];
if (buttonIndex == 1) {
[self shareToWeiXinIsFriend:YES image:data];
}else if (buttonIndex == 2){
[self shareToWeiXinIsFriend:NO image:data];
}else if (buttonIndex == 3){
[self shareToSinaWithImaegeData:data];
}
}
/**
* 分享网络图片 需要下载之后再分享
*
* @param imageUrl 分享图片地址
*
*/
- (void)shareWithImageUrl:(NSString *)imageUrl buttonIndex:(int)buttonIndex
{
MBProgressHUD *load = [LTools MBProgressWithText:nil addToView:[UIApplication sharedApplication].keyWindow];
[load show:YES];
__weak typeof(self)weakSelf = self;
SDWebImageDownloader *downloader = [SDWebImageDownloader sharedDownloader];
[downloader downloadImageWithURL:[NSURL URLWithString:imageUrl] options:SDWebImageDownloaderLowPriority | SDWebImageDownloaderUseNSURLCache progress:^(NSInteger receivedSize, NSInteger expectedSize) {
NSLog(@"progress %ld",(long)receivedSize);
} completed:^(UIImage *image, NSData *data, NSError *error, BOOL finished) {
[load hide:YES];
if (finished && error == nil && image) {
}else
{
image = [UIImage imageNamed:@"icon_share"];
}
data = [self thumbDataWithImage:image];
if (buttonIndex == 1) {
[weakSelf shareToWeiXinIsFriend:YES image:data];
}else if (buttonIndex == 2){
[weakSelf shareToWeiXinIsFriend:NO image:data];
}else if (buttonIndex == 3){
[weakSelf shareToSinaWithImaegeData:data];
}
}];
}
/**
* 分享至微信好友及朋友圈
*
* @param isFriend 是否是分享到好友
* @param imageData 图片data
*/
- (void)shareToWeiXinIsFriend:(BOOL)isFriend image:(NSData *)imageData
{
if ([WXApi isWXAppInstalled] && [WXApi isWXAppSupportApi]) {
WXMediaMessage *message = [WXMediaMessage message];
message.title = _title;
message.description = _description;
message.thumbData = imageData;
WXWebpageObject *ext = [WXWebpageObject object];
ext.webpageUrl = _linkUrl;
message.mediaObject = ext;
SendMessageToWXReq* req = [[SendMessageToWXReq alloc] init];
req.bText = NO;
req.message = message;
req.scene = isFriend ? WXSceneSession : WXSceneTimeline;
[WXApi sendReq:req];
}else{
UIAlertView *alView = [[UIAlertView alloc]initWithTitle:@"" message:@"你的iPhone上还没有安装微信。" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:nil, nil];
[alView show];
}
}
/**
* 分享至新浪微博
*
* @param imageData 图片data
*/
- (void)shareToSinaWithImaegeData:(NSData *)imageData
{
if ([WeiboSDK isWeiboAppInstalled] == NO) {
UIAlertView *alView = [[UIAlertView alloc]initWithTitle:@"" message:@"你的iPhone上还没有新浪微博客户端。" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:nil, nil];
[alView show];
return;
}
WBWebpageObject *pageObject = [ WBWebpageObject object ];
pageObject.objectID =@"nimeideid";
pageObject.thumbnailData = imageData;
pageObject.title = @"分享自改装志客户端";
pageObject.description = _description;
pageObject.webpageUrl = _linkUrl;
WBMessageObject *message = [ [ WBMessageObject alloc ] init ];
message.text =[NSString stringWithFormat:@"%@(分享自@越野e族)",_title] ;
message.mediaObject = pageObject;
WBSendMessageToWeiboRequest *req = [ [ WBSendMessageToWeiboRequest alloc ] init ];
req.message = message;
[ WeiboSDK sendRequest:req ];
}
//处理图片 不超过32KB
- (NSData *)thumbDataWithImage:(UIImage *)aImage
{
NSData *data = UIImageJPEGRepresentation(aImage, 1);
CGFloat ss = data.length/1000.f;
NSLog(@"image1-->%f",ss);
if (ss > 32) {
data = UIImageJPEGRepresentation(aImage, 32/ss);
NSLog(@"image2-->%f",data.length/1000.f);
return data;
}
return data;
}
-(void)shareToEmail:(NSString *)___str{
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:@"分享自改装志"];
// Fill out the email body text
NSString *emailBody =___str;
[picker setMessageBody:emailBody isHTML:NO];
UIViewController *root = ((AppDelegate *)[UIApplication sharedApplication].delegate).window.rootViewController;
@try {
[root presentViewController:picker animated:YES completion:^{
}];
}
@catch (NSException *exception) {
}
@finally {
}
}
- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error
{
NSString *title = @"Mail";
NSString *msg;
switch (result)
{
case MFMailComposeResultCancelled:
msg = @"Mail canceled";//@"邮件发送取消";
break;
case MFMailComposeResultSaved:
msg = @"Mail saved";//@"邮件保存成功";
// [self alertWithTitle:title msg:msg];
break;
case MFMailComposeResultSent:
msg = @"邮件发送成功";//@"邮件发送成功";
[self alertWithTitle:title msg:msg];
break;
case MFMailComposeResultFailed:
msg = @"邮件发送失败";//@"邮件发送失败";
[self alertWithTitle:title msg:msg];
break;
default:
msg = @"Mail not sent";
// [self alertWithTitle:title msg:msg];
break;
}
[controller dismissViewControllerAnimated:YES completion:NULL];
}
- (void) alertWithTitle: (NSString *)_title_ msg: (NSString *)msg
{
[LTools alertText:msg];
}
@end