Airbnb
iOS
- Implement a UIImage Category that supports LRU Image Cache with cache size of 10 images
- Download the image without blocking the main thread
- Dispatch to another queue for async image fetching
Need to consider thread safety and dispatch barrier
Imagine UITableView and UICollectionView haven't been invented yet, implement a Horizontal Table View that recycles memories.
- Create your own dataSource protocals: numberOfColumns and cellForColumnsAtIndexPath
- Initialization
- Get call back when user scroll your view: 为recycle memory做准备。因为我们subclass的已经是一个UIScrollView了,所以可以直接delegate给自己,然后得到scrollViewDidScroll的call back
Recycle memory: 当有cells被滑动到屏幕外边了之后(通过上一步来判断),把这些cells装到一个queue上,然后新的cells来重复使用这个queue里的memory, 原理和UITableView一模一样。不过当时面试官说不用queue这么复杂了,这里用一个set就行。
Implement a view controller with the following functions
- Display an image
- A delete button
Drag the image to the button and delete the image
How to create a collectionView within the cells of a tableView programmatically
Review the core values
- Be a host
- Champion the mission
- Every frame matters
- Be a cereal entreprenual
- Text Justification