XiaoKL

随笔分类 -  iOS

1 2 3 4 下一页

iOS.CocoaPods.25-issues-pod install: Stuck at "Generating deterministic UUIDs"
摘要:pod install: Stuck at "Generating deterministic UUIDs" 1. Pod Version $ pod --version 1.10.1 2. "Generating deterministic UUIDs" 2.1 Calling predictab 阅读全文

posted @ 2022-09-14 15:53 XiaoKL 阅读(161) 评论(0) 推荐(0)

iOS.Build.Bazel.2-Starlark
摘要:Starlark: Introduction 1. What's Starlark? "Starlark is the domain-specific language people use to configure and extend Bazel. It's conceived as a res 阅读全文

posted @ 2022-09-06 21:17 XiaoKL 阅读(93) 评论(0) 推荐(0)

OCLint.0.source-code-of-oclint
摘要:Source Code Of OCLint OCLint Version: 2022.02 1. Dependency of OCLint "OCLint is based on libTooling for parsing source code and generating Abstract S 阅读全文

posted @ 2022-07-04 15:41 XiaoKL 阅读(79) 评论(0) 推荐(0)

iOS.CocoaPods.23-Use-specific-version-of-CocoaPods
摘要:How to Use specific version of CocoaPods 1. 查看本地安装的CocoaPods的版本 执行以下命令: $ gem list --local cocoapods 输出如下: " cocoapods (1.9.3, 1.9.1, 1.8.4) cocoapods 阅读全文

posted @ 2021-03-30 10:47 XiaoKL 阅读(76) 评论(0) 推荐(0)

[Draft]iOS.ObjC.Pattern.Builder-Pattern
摘要:Builder Pattern in Objective-C Reference 1. The Builder pattern in Objective-C Published on 04 Apr 2014 https://webcache.googleusercontent.com/search? 阅读全文

posted @ 2018-05-09 11:52 XiaoKL 阅读(115) 评论(0) 推荐(0)

[Draft]iOS.Architecture.16.Truth-information-flow-and-clear-responsibilities-immutability
摘要:Concept: Truth, Information Flow, Clear Responsibilities and Immutability 1. Truth 1.1 Single Source of Truth 单一的事实/真想来源 Ref[2] Ref[3] "One core princ 阅读全文

posted @ 2018-05-09 11:39 XiaoKL 阅读(189) 评论(0) 推荐(0)

iOS.ObjC.__attribute__.1-all-_attribute_-directives
摘要:__attribute__ Directives 1. NS_RETURNS_INNER_POINTER "__attribute__((objc_returns_inner_pointer)) and NS_RETURNS_INNER_POINTER Indicates that the meth 阅读全文

posted @ 2018-04-11 19:03 XiaoKL 阅读(150) 评论(0) 推荐(0)

Security.ssl-pinning
摘要:SSL Pinning 1. What's SSL Pinning? "SSL Pinning is making sure the client checks the server’s certificate against a known copy of that certificate. Si 阅读全文

posted @ 2018-03-14 20:58 XiaoKL 阅读(313) 评论(0) 推荐(0)

iOS.mach_msg_trap()
摘要:mach_msg_trap() 1. mach_msg() mach_msg_trap() " > The Debugger window shows the calling stack at the top of which is> > 0 mach_msg_trap> 1 mach_msg> 2 阅读全文

posted @ 2018-03-12 09:52 XiaoKL 阅读(2300) 评论(0) 推荐(0)

iOS.redefinition-of-struct-x
摘要:Error: Redefinition of struct x Reference 阅读全文

posted @ 2017-03-31 23:49 XiaoKL 阅读(314) 评论(0) 推荐(0)

iOS.Animation.Math-behind-CATransform3D
摘要:iOS CoreAnimation: Math behind CATransform3D 1. What's CATransform? Matrix Transform: "User space = your view (points) Device space = hardware device 阅读全文

posted @ 2016-12-27 17:45 XiaoKL 阅读(491) 评论(0) 推荐(0)

Security.website-that-focus-on-mobile-app-security
摘要:Mobile App Security 1. DATA THEOREM LAB https://datatheorem.github.io/ Data Theorem's technical blog about mobile security and privacy. 2. Android安全中文 阅读全文

posted @ 2016-10-25 12:12 XiaoKL 阅读(334) 评论(0) 推荐(0)

iOS.ReactNative-3-about-viewmanager-uimanager-and-bridgemodule
摘要:RCTViewManager and RCTUIManager 1. RCTViewManager 1.1 RCTViewManager 实现了接口RCTBridgeModule 1 @interface RCTViewManager : NSObject <RCTBridgeModule> 1.2 阅读全文

posted @ 2016-02-18 14:04 XiaoKL 阅读(994) 评论(0) 推荐(0)

iOS.DistributionApp.1-mobile-provision-file[draft]
摘要:.mobileprovision file0..mobileprovision file的作用.mobileprovision file作用以及扮演的角色1. 如何删除旧的.mobileprovision fileRef[1]2..mobileprovision文件格式Ref[2]3. 检查设备UD... 阅读全文

posted @ 2016-01-05 00:08 XiaoKL 阅读(461) 评论(0) 推荐(0)

iOS.ReactNative-5-make-react-native-to-support-dynamically-update
摘要:基于React Native来实现App的热更新热更新: 类似Hot-Patching,在程序不发布版本的前提下,对部分功能或者全部功能进行修改或者升级。JSX1. JSX简介1.1 https://jsx.github.io/1.2Tutorial: JSX"JSX is a preprocess... 阅读全文

posted @ 2015-12-23 01:14 XiaoKL 阅读(1085) 评论(0) 推荐(0)

iOS.Performance-trick-presentViewController-is-so-slow-in-didSelectRowAtIndexPath
摘要:presentViewController is so slow in "tableView:didSelectRowAtIndexPath:"Use Case: 在UITableView的delegate方法"tableView:didSelectRowAtIndexPath:"中调用"[UIVi... 阅读全文

posted @ 2015-10-23 16:53 XiaoKL 阅读(752) 评论(0) 推荐(0)

iOS.StaticLibrary.1-avoid-duplicate-symbol-in-static-library[draft]
摘要:Avoid duplicate symbol in static library and its customer发布static library给使用者使用。在实际的工程实践中,iOS静态库一般会在对外/对内提供SDK时出现。静态库(SDK)本身可能依赖一些第三方的库,当使用该SDK的App也依赖... 阅读全文

posted @ 2015-10-15 23:23 XiaoKL 阅读(1262) 评论(0) 推荐(0)

iOS.ReactNative-4-react-native-command-line-tool
摘要:Command line tool: react-native 1. react-native 是一个命令行工具 1.1 react-native简介 运行以下命令: lrwxr-xr-x 1 XiaoKL admin 45 7 30 18:07 /usr/local/bin/react-nativ 阅读全文

posted @ 2015-08-24 18:07 XiaoKL 阅读(1232) 评论(0) 推荐(0)

iOS.ReactNative-2-bridge-and-react-native-app-execution
摘要:Bridge and React Native App Execution 基于0.18.1 Async batched bridge used to communicate with the JavaScript application. 分析Objective-C和JavaScript的通信机制 阅读全文

posted @ 2015-08-21 01:12 XiaoKL 阅读(2304) 评论(0) 推荐(0)

iOS.OpenSource.AllInOne
摘要:Open Source Project for iOS 所有和iOS相关的Open Source Project的汇总。 RMGallery https://github.com/robotmedia/RMGallery FGallery https://github.com/gdavis/FGal 阅读全文

posted @ 2015-08-17 13:56 XiaoKL 阅读(373) 评论(0) 推荐(0)

1 2 3 4 下一页

导航