RY 's Blog

Dive into react native module

Dive into React Native
Native Modules is one of the key part of React Native which enables JavasScript to call methods in iOS or Android native implementation. It is qu ...
Read more

iOS main in Assembly

Popular Article Debug
How to see Assemble code in Xcodedebug -> Product -> Action-> Assemble “main.m” 1234567812 int main(int argc, char * argv[]) {13 ...
Read more

Address Sanitizer

Debug
Memory corruption is hard to debug because it is hard to consistently reproduce and the source of error is often far from its manifestation. But w ...
Read more

Tail Call Elimination in iOS

Debug LLDB
Tail call optimization, callee reusing the stack of the caller, is currently supported on x86/x86-64, PowerPC, and WebAssembly. It is performed o ...
Read more

Behind the Scenes of the Xcode Build Process

LLDB Building
Most contents come from https://developer.apple.com/videos/play/wwdc2018/415 The new building system introduced in Xcode 10 is written by Swift ...
Read more

Advanced debug in Xcode and LLDB

Debug LLDB
Advanced debug in Xcode and LLDBhttps://developer.apple.com/videos/play/wwdc2018/412 This session is awesome! Configure behaviors to dedicate a ...
Read more

Beyond "po"

Debug LLDB
https://developer.apple.com/videos/play/wwdc2019/429 po commandWe usually use po to print object description, which does the same job as expres ...
Read more

Anchor point for 3D Transform in React Native

Popular Article Animation
In react-native, sometimes, you may want to rotate a view basing one a specific point instead of the center of the view. Like the cube animation i ...
Read more

Work with Wider Color

WWDC Image
Work with Wider Colorhttps://developer.apple.com/videos/play/wwdc2016/712 Basic concepts about colorWhat is Color Space A color space is a specifi ...
Read more

iOS images in memory

Image Debug Memory
Notes for wwdc2018/219 and wwdc2018/416 Why memory and CPU matter? It is obvious that too much usage of CPU has negative impact on battery life ...
Read more
Prev Next