其實做外包也是挺不錯,雖然累點,但是一天天的知識的擴展不少,下面是今天的收獲
①初始化數組一字典的方法
@[] 初始化不可變數組
@{} 初始化不可變字典
②手勢的使用
iOS中處理手勢之前是用四個方法:
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
- (void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
這四個方法是寫在底層UIResponder裡,但是這種方式甄別不同的手勢操作實在是麻煩 蘋果就給出了一個比較簡便的方式--手勢
UITapGestureRecognizer //點擊(可以設置點擊次數)
UIPinchGestureRecognizer //二指往然蛲獠Χ絞本S玫降乃醴
UIRotationGestureRecognizer //旋轉
UISwipeGestureRecognizer //滑動,快速移動
UIPanGestureRecognizer //拖移,慢速移動
UILongPressGestureRecognizer //長按
使用: