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
//
// KWMWeChatUtil.h
// iOrangeBusiness
//
// Created by Yaotian on 1/12/15.
// Copyright (c) 2015 kwm. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "KWMBaseVC.h"
#import "WXApi.h"
@interface KWMWeChatUtil : NSObject
+ (void)shareToFriendWithTitle:(NSString *)title
message:(NSString *)message
image:(UIImage *)image
urlString:(NSString *)urlString
sender:(KWMBaseVC *)sender;
+ (void)shareToCircleWithTitle:(NSString *)title
message:(NSString *)message
image:(UIImage *)image
urlString:(NSString *)urlString
sender:(KWMBaseVC *)sender;
/**
* 分享到微信
*
* @param title 标题
* @param message 描述
* @param image 图标
* @param urlString 点击跳转链接
* @param sender KWMBaseVC
* @param shareTo WXSceneTimeline or WXSceneSession
*/
+ (void)shareWithTitle:(NSString *)title
message:(NSString *)message
image:(UIImage *)image
urlString:(NSString *)urlString
sender:(KWMBaseVC *)sender
shareTo:(int)scene;
@end