上一页 1 2 3 4 5 6 ··· 18 下一页
摘要: 通过URL Scheme调起APP 在 Info.plist 中添加url scheme白名单 <key>LSApplicationQueriesSchemes</key> <array> <!-- 微信 URL Scheme 白名单--> <string>wechat</string> <stri 阅读全文
posted @ 2022-03-01 09:09 观海云不远 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 文件基本操作 NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES); NSString *cachePath = [paths firstObject]; NSFi 阅读全文
posted @ 2022-02-25 08:58 观海云不远 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 系统提供的方式 NSString *urlString = @"https://xxx.xxx.xxx/xxx"; NSURLSession *sharedSession = [NSURLSession sharedSession]; NSURLSessionDataTask *dataTask = 阅读全文
posted @ 2022-02-23 09:51 观海云不远 阅读(241) 评论(0) 推荐(0) 编辑
摘要: SceneDelegate.m - (void)scene:(UIScene *)scene willConnectToSession:(UISceneSession *)session options:(UISceneConnectionOptions *)connectionOptions { 阅读全文
posted @ 2022-02-14 15:36 观海云不远 阅读(222) 评论(0) 推荐(0) 编辑
摘要: SingleClass.h // // SingleClass.h // First // // Created by xxx on 2022/2/9. // #import <Foundation/Foundation.h> @interface SingleClass : NSObject +( 阅读全文
posted @ 2022-02-14 13:49 观海云不远 阅读(156) 评论(0) 推荐(0) 编辑
摘要: UIView 生命周期 #import "ViewController.h" @interface TestView: UIView @end @implementation TestView - (instancetype)init{ self = [super init]; if (self) 阅读全文
posted @ 2022-01-28 09:53 观海云不远 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 安装(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 阅读全文
posted @ 2020-12-30 09:06 观海云不远 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 准备工作:安装ApkTool、dex2jar、JD GUI 安装ApkTool 1、下载ApkTool。大家可以从 https://ibotpeaches.github.io/Apktool/install/ 上下载ApkTool 2、安装ApkTool (1)将下载好的apktool文件与apkt 阅读全文
posted @ 2019-11-08 09:26 观海云不远 阅读(1009) 评论(0) 推荐(0) 编辑
摘要: Python 读写Excel文件 这里使用的是 和 这两个excel读写库。 Python 正则表达式 查找val中是否存在xxx 阅读全文
posted @ 2019-07-11 11:56 观海云不远 阅读(1705) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2019-03-12 18:15 观海云不远 阅读(296) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 18 下一页