//在 .h 中定義控制項,
uidatepicker *_datepicker;
@property (strong,nonatomic) uidatepicker *datepicker;
// .m 中實現
// 使用備份變數名
@synthesize datepicker = _datepicker;
//設定控制項
//初始化uidatepicker 物件,並設定這個 控制項的 座標位置,寬和高
self.datepicker = [[uidatepicker alloc]initwithframe:cgrectmake(0, 150, 320, 216)];
//[nsdate date]獲取當前的時間,並把這個時間資料作為這個datepicker控制項的初始化值
//當然也可以使用自己定義的時間值,不過要用 nsdateformatter 來進行設計 時間格式,進行轉換成date型別
self.datepicker.date = [nsdate date];
//把這個控制項新增到view中
[self.view addsubview:self.datepicker];
// 獲取 在這個控制項上設定的時間
nsdate *selected = [self.datepicker date];
IOS成長之路 NSDate
cpp view plain copy 建立乙個時間物件 nsdata date nsdate date 列印時間 nslog today is date 再獲取的時間date減去24小時的時間 昨天的這個時候 nsdate yesterday nsdate datewithtimeinterval...
IOS成長之路 JSON解析
json資料 1 獲取json檔案路徑,根據路徑來獲取裡面的資料 nsstring path nsbundle mainbundle pathforresource test oftype json nsstring jsoncontent nsstring alloc initwithconten...
IOS成長之路 推送(本地推送)
1 開啟本地推送並設定屬性 cpp nsstring str 本地推送的資訊 uiapplication app uiapplication sharedapplication uilocalnotification notification uilocalnotification alloc in...