楠若寺的Blog

Talk is cheap. Show me the code.

对UIWebView、WKWebView拦截https请求,走自定义处理

场景: 最近有个需求是对UIWebView、WKWebView的https请求进行拦截,然后执行socket + 自定义ssl进行处理 方案: 方案一:自定义NSURLProtocol,配置UIWebView、WKWebView的schemehandler 自定义NSURLProtocol,可以拦截UIWebView请求 WKWebview进行拦截分为iOS11之前...

Git移除子模块

问题: Unity开发中一直使用的git submodules的方式管理子模块,现在要使用OpenUPM的方式来管理子模块;所以要删除子模块。 方案: 对.gitmodules文件中删除模块 将更改的.gitmodules文件添加到暂存区 对.git/config文件删除模块 git rm –cached path_to_submodule rm -rf .git/...

两数相加(两大数相加)

ARTS2 (Add Two Numbers) Problem You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single di...

两数之和算法

Problem 给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target  的那 两个 整数,并返回它们的数组下标。 你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。 你可以按任意顺序返回答案。 Example: ''' Given nums = [2, 7, 11, 15], target = 9, B...