摘要:
通过URL Scheme调起APP 在 Info.plist 中添加url scheme白名单 <key>LSApplicationQueriesSchemes</key> <array> <!-- 微信 URL Scheme 白名单--> <string>wechat</string> <stri 阅读全文
摘要:
文件基本操作 NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES); NSString *cachePath = [paths firstObject]; NSFi 阅读全文
摘要:
系统提供的方式 NSString *urlString = @"https://xxx.xxx.xxx/xxx"; NSURLSession *sharedSession = [NSURLSession sharedSession]; NSURLSessionDataTask *dataTask = 阅读全文
摘要:
SceneDelegate.m - (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions { 阅读全文
摘要:
SingleClass.h // // SingleClass.h // First // // Created by xxx on 2022/2/9. // #import <Foundation/Foundation.h> @interface SingleClass : NSObject +( 阅读全文
摘要:
UIView 生命周期 #import "ViewController.h" @interface TestView: UIView @end @implementation TestView - (instancetype)init{ self = [super init]; if (self) 阅读全文
摘要:
安装(ubuntu环境) 安装java环境 sudo apt-get install openjdk-8-jdk 安装jenkins wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add - sudo 阅读全文
摘要:
准备工作:安装ApkTool、dex2jar、JD GUI 安装ApkTool 1、下载ApkTool。大家可以从 https://ibotpeaches.github.io/Apktool/install/ 上下载ApkTool 2、安装ApkTool (1)将下载好的apktool文件与apkt 阅读全文
摘要:
Python 读写Excel文件 这里使用的是 和 这两个excel读写库。 Python 正则表达式 查找val中是否存在xxx 阅读全文
摘要:
One install package install.packages("ggplot2") load library library(ggplot2) update.packages() vector v=c(1,4,4,3,2,2,3) get vector elements, index i 阅读全文