3D Touch整合過程整理

2022-09-06 04:21:07 字數 1317 閱讀 8827

在啟動方法裡加入3d touch選單

else

}return

yes;

}

#pragma mark - 建立3d touch選單

-(void

)createitem

#pragma mark - 桌面圖示3dtouch按壓後選單的事件

if([s**edata getvaluefromsettingwithname:login_ticket])

//記體重

if ([shortcutitem.type isequaltostring:@"2"

])

//記錄飲食運動

if ([shortcutitem.type isequaltostring:@"3"

])

//發動態

if ([shortcutitem.type isequaltostring:@"4"

]) }}

}

方法如下:

//

快速進入

if ([s**edata getvaluefromsettingwithname:@"

shortcutitemtype

"])

//記體重

if ([shortcutitemtype isequaltostring:@"2"

])

//記錄飲食運動

if ([shortcutitemtype isequaltostring:@"3"

])

//發動態

if ([shortcutitemtype isequaltostring:@"4"

])

[s**edata removevaluefromsettingwithname:

@"shortcutitemtype"];

}

下面這個是把資料記錄到本地的方法,寫下吧以免時間長忘記了

+(id)getvaluefromsettingwithname:(nsstring *)name

+(void)setvaluetosettingwithname:(nsstring *)name value:(id

)value

+(void)removevaluefromsettingwithname:(nsstring *)name

group.fitmissshareddefaults是在開發者中心裡開啟的分組,不用這個,用引掉的那個也行的。

3d touch 的使用 一

廢話不多說,直接上 在方法裡面判斷,該手機是否是9.0以上,因為3dtouch是9.0以後出的功能 cgfloat currentdeviceversionfloat uidevice currentdevice systemversion floatvalue 判斷版本號,3d touch是從io...

iOS開發 3D Touch簡要總結

3d touch是ios9推出的適用於iphone6s plus 包括剛出的iphone7 plus 以上的機型的功能。開發主要有4個方面 主介面快捷選單功能 home screen quick action 預覽圖和重擊功能 uikit peek and pop web view預覽鏈結的頁面 w...

3D Touch功能之shortcut簡析

牛b的6s帶上了3d touch功能,最近忍不住,一咬牙一跺腳,賣了個 腎 入手乙個6s,迫不及待的去看了看3d touch功能,用起來還是蠻爽的,於是乎就煩了翻果子的開發文件,自己搞了個非常簡單的demo,順便記錄一下,以免下次用到時,到處找不到。shortcut分為靜態和動態兩種方式實現,靜態方...