您好,登錄后才能下訂單哦!
http://open.weixin.qq.com/document/sdk/ios/index.html
微信終端SDK使用指南
向微信注冊你的應用程序id。
下載微信終端SDK文件。
將SDK文件中包含的libWeChatSDK.a,WXApi.h, WXApiObject.h三個文件添加到你所建的工程中。
在Xcode4中,選擇你的工程設置項,選中“TARGETS”一欄,在“info”標簽欄的“URL type“添加“URL scheme”為你所注冊的應用程序id。如果使用的是Xcode3或更低版本,則需要在plist文件中添加。
程序啟動時,在代碼中向微信終端注冊你的id:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [WXApi registerApp:"wxd930ea5d5a258f4f"];
重寫AppDelegate的handleOpenURL和openURL方法:
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url { return [WXApi handleOpenURL:url delegate:self]; }
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation { return [WXApi handleOpenURL:url delegate:self]; }
實現WXApiDelegate協議的兩個方法:
- (void) onReq:(BaseReq*)req
- (void) onResp:(BaseResp*)resp
向微信發送圖片的例子:
- (void) sendImageContent { WXMediaMessage *message = [WXMediaMessage message]; [message setThumbImage:[UIImage p_w_picpathNamed:"res2.jpg"]];
WXImageObject *ext = [WXImageObject object]; NSString *filePath = [[NSBundle mainBundle] pathForResource:"res2" ofType:@"jpg"]; ext.p_w_picpathData = [NSData dataWithContentsOfFile:filePath] ;
message.mediaObject = ext;
SendMessageToWXReq* req = [[[SendMessageToWXReq alloc] init]autorelease]; req.bText = NO; req.message = message; //req.scene = WXSceneTimeline; //選擇發送到朋友圈,默認值為WXSceneSession,發送到會話
[WXApi sendReq:req]; }
收到微信程序回應的例子:
-(void) onResp:(BaseResp*)resp { if([resp isKindOfClass:[SendMessageToWXResp class]]) { NSString *strMsg = [NSString stringWithFormat:"發送消息結果:d", resp.errCode]; ... }
OK!你已經能使用微信終端SDK的API內容了。如果想參考更多例子,請自行下載閱讀微信SDK Sample Demo源碼。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。