在安裝後第一次執行軟體時,系統會彈出提示使用者是否允許軟體獲取當前位置,如果使用者不允許的話,之後執行時系統不會在彈出提示設定,這點很不方便,有個解決辦法是給使用者乙個選項,調出iphone中「設定」定位服務選項,由使用者手動設定,呼叫系統「設定」中定位服務相關**如下:
-(ibaction)btnsetting:(id)sender
還有其他呼叫系統設定的命令:
about — prefs:root=general&path=about
accessibility — prefs:root=general&path=accessibility
airplane mode on — prefs:root=airplane_mode
auto-lock — prefs:root=general&path=autolock
brightness — prefs:root=brightness
bluetooth — prefs:root=general&path=bluetooth
date & time — prefs:root=general&path=date_and_time
facetime — prefs:root=facetime
general — prefs:root=general
keyboard — prefs:root=general&path=keyboard
icloud — prefs:root=castle
icloud storage & backup — prefs:root=castle&path=storage_and_backup
international — prefs:root=general&path=international
location services — prefs:root=location_services
music — prefs:root=music
music equalizer — prefs:root=music&path=eq
music volume limit — prefs:root=music&path=volumelimit
network — prefs:root=general&path=network
nike + ipod — prefs:root=nike_plus_ipod
notes — prefs:root=notes
notification — prefs:root=notifications_id
phone — prefs:root=phone
photos — prefs:root=photos
profile — prefs:root=general&path=managedconfigurationlist
reset — prefs:root=general&path=reset
safari — prefs:root=safari
siri — prefs:root=general&path=assistant
sounds — prefs:root=sounds
software update — prefs:root=general&path=software_update_link
store — prefs:root=store
twitter — prefs:root=twitter
usage — prefs:root=general&path=usage
vpn — prefs:root=general&path=network/vpn
wall***** — prefs:root=wall*****
wi-fi — prefs:root=wifi
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 宣告時必須指定長寬 ...