- 更新到Xcode16,iOS18后无法分享图片到微信
https://developers.weixin.qq.com/doc/oplatform/Mobile_App/Share_and_Favorites/iOS.html 唤起微信后出现正在连接页面,后就跳转回App,无法分享。
10-28 - iOS开发 微信开源扫码引擎普通二维码可以扫,dataMatrix码扫不了?
这两个码都扫不了。 string detect_prototxt = [[[NSBundle mainBundle] pathForResource:@"detect" ofType:@"prototxt"] UTF8String]; string detect_caffe_model = [[[NSBundle mainBundle] pathForResource:@"detect" ofType:@"caffemodel"] UTF8String]; string sr_prototxt = [[[NSBundle mainBundle] pathForResource:@"sr" ofType:@"prototxt"] UTF8String]; string sr_caffe_model = [[[NSBundle mainBundle] pathForResource:@"sr" ofType:@"caffemodel"] UTF8String]; shared_ptr detector; detector = makePtr(detect_prototxt, detect_caffe_model, sr_prototxt, sr_caffe_model); Mat imgMat; UIImageToMat([UIImage imageNamed:@"dataMatrix_rgb"], imgMat); vector vPoints; vector strDecoded = detector->detectAndDecode(imgMat, vPoints); for (int i = 0; i < strDecoded.size(); i ++) { string str = strDecoded[i]; cout << str; cout << "\n"; }
2021-09-07 - 第三方app如何唤醒微信,通过微信浏览器跳转到指定url,进行支付?
目前只能实现唤醒微信,跳转不到指定的url,有具体的api活着其他方法吗?
2020-12-14