w
h
y
?
y
o
u
a
r
e
h
e
r
e
?
找到对应的xxx.framework目录下面
目录里面一定要有一个xxx文件才行
然后执行以下命令即可
1xcrun bitcode_strip xxx -r -o xxx
获取A证书的公钥
1openssl x509 -in A.cer -pubkey -noout
获取A证书的MD5
1openssl x509 -fingerprint -md5 -noout -in A.cer
获取A证书的SHA1
1openssl x509 -fingerprint -sha1
...
H5网页打开iOSAPP有两种方式
第一种
在URL Types新增一个自定义的URL Schemes(比如591xt)
然后在网页中直接调用即可
1<a href="591xt://">唤醒iOSAPP</a>
第二种就是iOS的Universal Li
...
需要先这样
1Button.titleLabel.text=@"";
然后再设置
1[Button setTitle:@"" forState:(UIControlStateNormal)];
顺序不能反
1[[UIApplication sharedApplication] performSelector:@selector(suspend)];
当ARC的时候我们获取全局的AppDelegate
1AppDelegate *app = [UIApplication sharedApplication].delegate;
会报警告:1Initializing 'AppDelegate *__strong' with an
...
遇到这个提示一般都是运行别人的项目
因为签名没有勾选自动签名导致的
打开DevEco-Studio在File下找到Project Structure点击进入配置页面
找到Project下的Signing Configs
找到并勾选automatically generate signature即可
这个报错是因为在ts文件中导入了ets文件
直接把ts文件直接改成ets就行了
1open -n /Applications/QQ.app/Contents/MacOS/QQ
在script插入这段代码即可
123setInterval(() => { (function (a) {return (function (a) {return (Function('Function(arguments[0]+"&apo
...