實戰 如何實現滾輪時間的顯示

2022-03-20 13:13:15 字數 1053 閱讀 5235

(高階控制項)拾取器

ps:無論是uipickerview還是uidatepicker,都需要設定成iboutlet型別。

按鈕的事件型別為:touch up inside

- (ibaction)buttonpressed:(id)sender{

nsdate *selectedtime = [uidatepicker date];

nsformatter *dateformatter = [[nsformatter alloc]init];

[dateformatter setdateformat:@"yyyy-mm-dd hh:mm:ss"];

nsstring *selectedtimestring = [dateformatter stringfromdate:selectedtime];

nsstring *message = [[nsstring alloc]initwithformat:@"the date and time you selected is: %@",selectedtimestring];

uialertview *alertview = [[uialertview alloc] initwithtitle:@"shijian" message:message

delegate:nil  cancelbuttontitle:@"cancel" otherbuttontitles:nil];

[alertview show]; 

-(void)viewdidload{

[super viewdidload];

nsdate *now = [nsdate date];

[datepicker setdate:now animated:no]; //設定日期拾取器的時間,animated:yes是實現動畫效果,在初始化時候滾輪滾動到當前日期。

彙編,實現顯示當前時間

秒 0 分 2 時 4 日 7 月 8 年 9 這些資料以bcd碼的方式存放。從cmos ram中讀取資訊的方法是 out 70h,暫存器 暫存器中存放了要訪問的單元位址 in 暫存器,71h 從單元處讀取資料 接下來的是 程式設計,以 年 月 日 時 分 秒 的格式,顯示當前的日期 時間。assu...

如何動態的顯示程式執行的時間

假設你在做乙個小軟體,需要動態顯示某個軟體功能執行所花費的時間.就像防毒那樣,上面會有執行時間。動態顯示很簡單,首先想到的就是設定乙個定時器,每隔一秒獲取當前系統的時間,然後和程式剛執行的時間相減就能得出執行時間了。但是這樣就有乙個問題,假如中途你這個程式想要暫停一會,然後繼續,你會發現,顯示的時間...

如何修改系統時間顯示格式!

如何修改系統時間顯示格式 乙個gui程式,程式介面有實時日期時間顯示,通過雙擊桌面圖示執行時,時間顯示正常,是24小時制 但通過dos命令啟動時,時間總是顯示成12小時格式,如 2013 11 02 上午 10 12 23 等 不管是設定控制面板裡的區域與語言選項的自定義時間格式,還是按照網上說的修...