還沒做完,時鐘部分做了一點,用的開源的時鐘。
先截圖可能效果:
採用的是標籤欄加導航欄的方式。
關鍵的就那麼幾行**。
nsstring *cellidentifer = @"cell1"; //[tableview registerclass:
[uitableviewcell class] forcellreuseidentifier:cellidentifer];
uitableviewcell *cell = [tableview dequeuereusablecellwithidentifier:cellidentifer];
//nsstring *str =[[nsdate date] description];
nsdate *date = [nsdate date];
nscalendar *cal = [nscalendar currentcalendar];
nsdatecomponents *components = [cal components:nshourcalendarunit fromdate:date];
nsstring *strhour = [nsstring stringwithformat:@"%ld", (long)[components hour]];
nsstring *strminute = [nsstring stringwithformat:@"%ld", (long)[components minute]];
myhour = [strhour intvalue]; myminute = [strminute intvalue];
uiview *clockview = (uiview *)[cell viewwithtag:100];
cgrect clockframe = cgrectmake(0,0,cgrectgetwidth(self.view.bounds)*0.25,cgrectgetheight(self.view.bounds)*0.25);
最近做的乙個瀏覽器做的不是很好看,下次改進分享。
用原生JS寫簡單的時鐘
這是乙個簡單的時鐘方案,主要 是三個時針旋轉的思路,時鐘布局省去。step 1.獲取時分秒轉針 var hour document.getelementbyid hour var min document.getelementbyid m var sec document.getelementbyi...
仿抖音效果的數字時鐘羅盤
最近抖音上的時鐘羅盤桌布可謂是非常的火爆,今天就用自定義控制項來實現這個功能。效果圖 軟體詳情 時鐘羅盤是動態的桌布,隨著時間而跳轉的時鐘,中間去除了月份和星期,並加入了炫彩文字,使總體看起來不這麼單調。實現 寫乙個類datatimeview 繼承 view 並實現其中乙個引數和兩個引數的構造 用於...
仿iPhone的日期時間選擇器
仿iphone的日期時間選擇器 可選只選擇日期,也可以同時選擇時間 只選擇日期的情況 同時選擇日期和時間的情況 關鍵 findviewbyid r.id.selectdatebutton setonclicklistener new onclicklistener catch parseexcept...