在info.plist裏面添加LSApplicationQueriesSchemes(Array類型),而後插入weixin, wechat, mqq的string類型子項,以下圖:html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
if
([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@
"weixin://"
]]) {
}
if
([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:@
"mqq://"
]]) {
}
|