您好,登錄后才能下訂單哦!
http://open.weixin.qq.com/document/sdk/ios/index.html
微信終端SDK使用指南
向微信注冊(cè)你的應(yīng)用程序id。
下載微信終端SDK文件。
將SDK文件中包含的libWeChatSDK.a,WXApi.h, WXApiObject.h三個(gè)文件添加到你所建的工程中。
在Xcode4中,選擇你的工程設(shè)置項(xiàng),選中“TARGETS”一欄,在“info”標(biāo)簽欄的“URL type“添加“URL scheme”為你所注冊(cè)的應(yīng)用程序id。如果使用的是Xcode3或更低版本,則需要在plist文件中添加。
程序啟動(dòng)時(shí),在代碼中向微信終端注冊(cè)你的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]; }
實(shí)現(xiàn)WXApiDelegate協(xié)議的兩個(gè)方法:
- (void) onReq:(BaseReq*)req
- (void) onResp:(BaseResp*)resp
向微信發(fā)送圖片的例子:
- (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; //選擇發(fā)送到朋友圈,默認(rèn)值為WXSceneSession,發(fā)送到會(huì)話
[WXApi sendReq:req]; }
收到微信程序回應(yīng)的例子:
-(void) onResp:(BaseResp*)resp { if([resp isKindOfClass:[SendMessageToWXResp class]]) { NSString *strMsg = [NSString stringWithFormat:"發(fā)送消息結(jié)果:d", resp.errCode]; ... }
OK!你已經(jīng)能使用微信終端SDK的API內(nèi)容了。如果想?yún)⒖几嗬?,?qǐng)自行下載閱讀微信SDK Sample Demo源碼。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。