UIDragInteraction拖拽UIDropInteraction

if (IOS11) {
UIDragInteraction* drag = [[UIDragInteraction alloc] initWithDelegate:self];
[self addInteraction:drag];
self.userInteractionEnabled = true;
}
**************代理
API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(watchos, tvos) @protocol UIDragInteractionDelegate <NSObject>
@required
//提供數(shù)據(jù)源 長按UI開始拖拽

  • (NSArray<UIDragItem *> *)dragInteraction:(UIDragInteraction *)interaction itemsForBeginningSession:(id<UIDragSession>)session;
    @optional
    //提供UITargetedDragPreview的相關(guān)信息 長按UI是有個(gè)lift(UI舉起效果恩溅,系統(tǒng)自動(dòng)生成)
    //返回nil 沒有效果说莫; 不實(shí)現(xiàn)該方法 interaction.view自動(dòng)生成UITargetedDragPreview
  • (nullable UITargetedDragPreview *)dragInteraction:(UIDragInteraction *)interaction previewForLiftingItem:(UIDragItem *)item session:(id<UIDragSession>)session;
    //drag發(fā)生時(shí)調(diào)用
  • (void)dragInteraction:(UIDragInteraction *)interaction willAnimateLiftWithAnimator:(id<UIDragAnimating>)animator session:(id<UIDragSession>)session;
    //將要開始drag
  • (void)dragInteraction:(UIDragInteraction *)interaction sessionWillBegin:(id<UIDragSession>)session;
    //是否允許數(shù)據(jù)移動(dòng) app內(nèi)移動(dòng)有效摧莽,跨app總是復(fù)制數(shù)據(jù)
  • (BOOL)dragInteraction:(UIDragInteraction *)interaction sessionAllowsMoveOperation:(id<UIDragSession>)session;
    //是否允許跨應(yīng)用程序進(jìn)行drag ipad
  • (BOOL)dragInteraction:(UIDragInteraction *)interaction sessionIsRestrictedToDraggingApplication:(id<UIDragSession>)session;
    //設(shè)置預(yù)覽視圖是否顯示原始大小
  • (BOOL)dragInteraction:(UIDragInteraction *)interaction prefersFullSizePreviewsForSession:(id<UIDragSession>)session;
    //已經(jīng)結(jié)束移動(dòng)
  • (void)dragInteraction:(UIDragInteraction *)interaction sessionDidMove:(id<UIDragSession>)session;
    //drag將要結(jié)束時(shí)調(diào)用
  • (void)dragInteraction:(UIDragInteraction *)interaction session:(id<UIDragSession>)session willEndWithOperation:(UIDropOperation)operation;
    //drag已經(jīng)結(jié)束時(shí)調(diào)用
  • (void)dragInteraction:(UIDragInteraction *)interaction session:(id<UIDragSession>)session didEndWithOperation:(UIDropOperation)operation;
    //拖拽源進(jìn)行了放置操作后調(diào)用
  • (void)dragInteraction:(UIDragInteraction *)interaction sessionDidTransferItems:(id<UIDragSession>)session;
    //設(shè)置是否允許向拖拽中的項(xiàng)目添加數(shù)據(jù) 返回?cái)?shù)據(jù)載體數(shù)組 drag時(shí)點(diǎn)擊拖拽的組件調(diào)用
  • (NSArray<UIDragItem *> *)dragInteraction:(UIDragInteraction *)interaction itemsForAddingToSession:(id<UIDragSession>)session withTouchAtPoint:(CGPoint)point;
    //設(shè)置允許進(jìn)行拖拽中追加數(shù)據(jù)的拖拽行為會(huì)話
  • (nullable id<UIDragSession>)dragInteraction:(UIDragInteraction *)interaction sessionForAddingItems:(NSArray<id<UIDragSession>> *)sessions withTouchAtPoint:(CGPoint)point;
    //將要向拖拽組件中追加數(shù)據(jù)時(shí)調(diào)用
  • (void)dragInteraction:(UIDragInteraction *)interaction session:(id<UIDragSession>)session willAddItems:(NSArray<UIDragItem *> *)items forInteraction:(UIDragInteraction *)addingInteraction;
    //設(shè)置拖拽動(dòng)作取消的視圖動(dòng)畫 返回nil則消除動(dòng)畫
  • (nullable UITargetedDragPreview *)dragInteraction:(UIDragInteraction *)interaction previewForCancellingItem:(UIDragItem *)item withDefault:(UITargetedDragPreview *)defaultPreview;
    //drag動(dòng)畫將要取消時(shí)調(diào)用
  • (void)dragInteraction:(UIDragInteraction *)interaction item:(UIDragItem *)item willAnimateCancelWithAnimator:(id<UIDragAnimating>)animator;

API_AVAILABLE(ios(11.0)) API_UNAVAILABLE(watchos, tvos) @protocol UIDropInteractionDelegate <NSObject>

@optional
//是否可以處理來自Drag的數(shù)據(jù)

  • (BOOL)dropInteraction:(UIDropInteraction *)interaction canHandleSession:(id<UIDropSession>)session;
    //Drag的UI元素進(jìn)入Drop的區(qū)域
  • (void)dropInteraction:(UIDropInteraction *)interaction sessionDidEnter:(id<UIDropSession>)session;
    //第二次判斷是否可以接收 無法接收用UIDropOperationCancel
  • (UIDropProposal *)dropInteraction:(UIDropInteraction *)interaction sessionDidUpdate:(id<UIDropSession>)session;
    //Drag的UI元素離開Drop的區(qū)域
  • (void)dropInteraction:(UIDropInteraction *)interaction sessionDidExit:(id<UIDropSession>)session;
    //取出來自drag的數(shù)據(jù)
    1
    NSLog(@"%f,%f",[session locationInView:self.view].x,[session locationInView:self.view].y)
  • (void)dropInteraction:(UIDropInteraction *)interaction performDrop:(id<UIDropSession>)session;
    //drop結(jié)束
  • (void)dropInteraction:(UIDropInteraction *)interaction concludeDrop:(id<UIDropSession>)session;
    //整個(gè)Drag和Drop結(jié)束
  • (void)dropInteraction:(UIDropInteraction *)interaction sessionDidEnd:(id<UIDropSession>)session;
    //手指松開,控制Drag Preview 如何自然的過渡到Drop之后的Preview
  • (nullable UITargetedDragPreview *)dropInteraction:(UIDropInteraction *)interaction previewForDroppingItem:(UIDragItem *)item withDefault:(UITargetedDragPreview *)defaultPreview;
    //手指松開Drop時(shí),控制Drop區(qū)域的其他UI元素如何展示動(dòng)畫
  • (void)dropInteraction:(UIDropInteraction *)interaction item:(UIDragItem *)item willAnimateDropWithAnimator:(id<UIDragAnimating>)animator;
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌咕晋,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件收奔,死亡現(xiàn)場離奇詭異掌呜,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)坪哄,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進(jìn)店門质蕉,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人翩肌,你說我怎么就攤上這事模暗。” “怎么了念祭?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵兑宇,是天一觀的道長。 經(jīng)常有香客問我粱坤,道長隶糕,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任站玄,我火速辦了婚禮枚驻,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘株旷。我一直安慰自己再登,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布灾常。 她就那樣靜靜地躺著霎冯,像睡著了一般铃拇。 火紅的嫁衣襯著肌膚如雪钞瀑。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天慷荔,我揣著相機(jī)與錄音雕什,去河邊找鬼。 笑死,一個(gè)胖子當(dāng)著我的面吹牛贷岸,可吹牛的內(nèi)容都是我干的壹士。 我是一名探鬼主播,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼偿警,長吁一口氣:“原來是場噩夢啊……” “哼躏救!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起螟蒸,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤盒使,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后七嫌,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體少办,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年诵原,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了英妓。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,622評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡绍赛,死狀恐怖蔓纠,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情惹资,我是刑警寧澤贺纲,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站褪测,受9級特大地震影響猴誊,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜侮措,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一懈叹、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧分扎,春花似錦澄成、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至菲饼,卻和暖如春肾砂,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背宏悦。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工镐确, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留包吝,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓源葫,卻偏偏與公主長得像诗越,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子息堂,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,490評論 2 348

推薦閱讀更多精彩內(nèi)容