最近工作比較忙,然後最近也在嘗試著翻譯一篇關於CALayer
非常詳解的一篇文章,文章還是比較好也比較長的,等整理完了再發布出來吧。所以也沒啥多餘的時間寫些東西,就先來分享一下開發中的一些小Tips
吧。
一、倒數計時問題
在開發中經常遇到倒數計時倒數計時問題,寫一個Button
,然後各種判斷各種狀態,好多程式碼感覺很亂,下面就分享一下,一句話解決倒數計時問題的例子(當然不是萬能的,只適合大部分普通的倒數計時^_^)!
先看效果
倒數計時按鈕的效果
再看看我們的程式碼
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
// // ViewController.m // HWCountdownDemo // // Created by HenryCheng on 16/1/4. // Copyright © 2016年 www.igancao.com. All rights reserved. // #import "ViewController.h" #import "UIButton+countDown.h" @interface ViewController () @property (weak, nonatomic) IBOutlet UIButton *countdownBtn; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; } - (IBAction)countdownBtnClick:(UIButton *)sender { [_countdownBtn startWithTime:5 title:@"獲取驗證碼" countDownTitle:@"s" mainColor:[UIColor colorWithRed:84/255.0 green:180/255.0 blue:98/255.0 alpha:1.0f] countColor:[UIColor lightGrayColor]]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } @end |
這裡主要的就是xib
拉了一個button
然後連線了它的屬性和方法,我們可以看到就呼叫了
1 |
[_countdownBtn startWithTime:5 title:@"獲取驗證碼" countDownTitle:@"s" mainColor:[UIColor colorWithRed:84/255.0 green:180/255.0 blue:98/255.0 alpha:1.0f] countColor:[UIColor lightGrayColor]];} |
這一句程式碼,就完成了倒數計時功能。
這裡我寫了一個category
,裡面程式碼是這樣的
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
// // UIButton+countDown.m // LiquoriceDoctorProject // // Created by HenryCheng on 15/12/4. // Copyright © 2015年 iMac. All rights reserved. // #import "UIButton+countDown.h" @implementation UIButton (countDown) - (void)startWithTime:(NSInteger)timeLine title:(NSString *)title countDownTitle:(NSString *)subTitle mainColor:(UIColor *)mColor countColor:(UIColor *)color { //倒數計時時間 __block NSInteger timeOut = timeLine; dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); dispatch_source_t _timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, queue); //每秒執行一次 dispatch_source_set_timer(_timer, dispatch_walltime(NULL, 0), 1.0 * NSEC_PER_SEC, 0); dispatch_source_set_event_handler(_timer, ^{ //倒數計時結束,關閉 if (timeOut |
關於這個方法的定義
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
// // UIButton+countDown.h // LiquoriceDoctorProject // // Created by HenryCheng on 15/12/4. // Copyright © 2015年 iMac. All rights reserved. // #import @interface UIButton (countDown) /** * 倒數計時按鈕 * * @param timeLine 倒數計時總時間 * @param title 還沒倒數計時的title * @param subTitle 倒數計時中的子名字,如時、分 * @param mColor 還沒倒數計時的顏色 * @param color 倒數計時中的顏色 */ - (void)startWithTime:(NSInteger)timeLine title:(NSString *)title countDownTitle:(NSString *)subTitle mainColor:(UIColor *)mColor countColor:(UIColor *)color; @end |
試想,如果你有多個介面用到這樣的倒數計時按鈕,比如什麼登入註冊、修改密碼啥的,直接呼叫一個方法,會不會很方便?
上面的Demo
所有的程式碼可以在 這裡 看到
當然,這裡只是簡單地自定義,你還可以在裡面做更多的操作,比如加點動畫什麼的。之前寫過Swift
的一些倒數計時的例子,如果你有興趣,可以看看下面的效果
加動畫的倒數計時按鈕
程式碼在這裡可以看到
二、複合語句在 Objective-C 中的使用
之前在一篇文章中看到過一次介紹複合語句在iOS中的使用,這裡跟大家分享一下。
比如我們一般寫一個tableView
一般都是向下面這種寫法寫的
1 2 3 4 |
self.myTableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.view.frame), CGRectGetHeight(self.view.frame)) style:UITableViewStyleGrouped]; self.myTableView.dataSource = self; self.myTableView.delegate = self; [self.view addSubview:self.myTableView]; |
使用複合語句的話就是把整個程式碼塊放在(
和{
裡面,看起來更清晰,如下
1 2 3 4 5 6 |
self.myTableView = ({ UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.view.frame), CGRectGetHeight(self.view.frame)) style:UITableViewStyleGrouped]; tableView.dataSource = self; tableView.delegate = self; [self.view addSubview:tableView]; tableView; }); |
其實上面兩段程式碼意思完全一樣,只不過寫法不同罷了,第二段看起來更炫酷,快去試試吧!