iOS開發技巧7

2021-06-10 06:21:21 字數 400 閱讀 1255

今天開發的時候需要日期轉換成星期的方法:也是網上搜尋到的

nsdateformatter *inputformatter = [[nsdateformatter alloc] init];

[inputformatter setdateformat

nsdate *formatterdate = [inputformatter datefromstring

nsdateformatter *outputformatter = [[nsdateformatter alloc] init];

[outputformatter setdateformat

nsstring *newdatestring = [outputformatter stringfromdate:formatterdate];

iOS開發技巧

1.xcode外掛程式目錄 2.ios靜態庫打包 1.新建工程 framework library 2.寫完framework專案後,直接編譯,會生成 h檔案和.a實現檔案 看不見原始碼的二進位制檔案 但是編譯成 a檔案時,要針對不同的平台編譯 繼而生成不同平台上可以使用的 a 檔案 1 ios d...

iOS開發技巧10

所有快捷鍵在xcode4.5中測試 command delete 刪除游標至行首的內容 control k 刪除游標 至本段末的內容 control y 將剛剛用control k或command delete刪除的內容貼上至游標所在之處 shift command 調出拼寫檢查對話方塊。ctrl ...

iOS開發技巧(1)

這個系列的文章只是簡單地把開發過程中的一些技巧總結起來,方便以後查閱。exclusivetouch是uiview的乙個屬性。exclusive是 獨家 的意思,所以這個方法的作用就是把某個uiview的觸碰事件設定為獨家事件,即如果多個設定了exclusivetouch的uiview被同時點選,則只...