Category Archives: IT

A Brief History of Human-Computer Interaction

Computers are like magic boxes that reveal various extraordinary features and amazingly change our lives. Nowadays, we use laptops, mobile phones and the other fresh even smarter devices every day, which makes that we find they are our essential partners and even friends. Perhaps we have been used to using them, but do you give… Read More »

Category: IT

iOS Memory Management

iOS Memory Management Memory Management in Objective-C Memory management is the programming discipline of managing the life cycles of objects and freeing them when they are no longer needed. Managing object memory is a matter of performance; if an application doesn’t free unneeded objects, its memory footprint grows and performance suffers. However, garbage collection is… Read More »

The Solution of Live Streaming Quiz Mobile Client

Live Streaming Quiz(LSQ) is a very prevalent interact game from Q4 2017. Many live streaming video companies all published own quiz feature in Appstore. Today I introduce my project of LSQ. 1. The Way of Playing Quiz Live Streaming quiz is like joining “Slumdog Millionaire” in your smart phone. There are 10 questions asked by… Read More »

YXQueue

An OOP and easily using job queue for iOS YXQueue is encapsulate for NSOperation. Thread’s manager and invoker are divided by YXQueue. Using it, developers won’t focus too mach on thread management, just pay attention to how to create a job and implement delegate. The github address is https://github.com/jacklandrin/YXQueue Architecture YXQueueDispatcherIt’s designed as dispatcher of… Read More »