iOS 瘋狂基礎之NSDate 時間

2021-06-12 21:14:51 字數 483 閱讀 5747

//初始化時間

nsdate * today = [nsdate

date];

nsdateformatter* formatter = [[nsdateformatter

alloc

]init];

[formatter setdateformat:@"yyyy-mm-dd"];

datefrom.text = [formatter stringfromdate:today];

將字串datestr轉化為nsdate

nsdateformatter *dateformatter = [[nsdateformatter

alloc] init]; 

[dateformatter setdateformat:@"y-m-d hh:mm:ss"];

nsdate *date=[dateformatter datefromstring:datestr];

IOS瘋狂基礎之NSDictionary

廢話少說,看下 就知道用法了。nsdictionary dict nsdictionary dictionarywithobjectsandkeys value1 key1 value2 key2 nil 注意nil 結尾 得到key value的個數 int dictsize mydictiona...

IOS瘋狂基礎之UIImage

cgimage和cgimageref這兩個應當是用來重繪圖形的類,它們在應用時是按照影象的畫素矩陣來繪製的,它們可以用來處理bitmap。cgimageref與uiimage的互轉 cgimageref轉換成uiimage cgimageref ioffscreen cgbitmapcontextc...

IOS瘋狂基礎之UILabel

前言 我這個人不怎麼喜歡用 xib 或是 storyboard 拖控制項然後關聯操作,我喜歡用寫 的方式來實現。以下是常用的屬性 uilabel label1 uilabel alloc initwithframe cgrectmake 50.0 20.0 200.0 50.0 宣告時必須指定長寬 ...