码迷,mamicode.com
首页 > 移动开发 > 详细

iOS collection长按编辑功能

时间:2015-10-16 16:52:35      阅读:756      评论:0      收藏:0      [点我收藏+]

标签:

//长按是否出现编辑菜单(Cut Copy Paste)

- (BOOL)collectionView:(UICollectionView *)collectionView shouldShowMenuForItemAtIndexPath:(NSIndexPath *)indexPath

{

    return YES;

}

 

- (BOOL)collectionView:(UICollectionView *)collectionView canPerformAction:(SEL)action forItemAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender

{

    NSString * selName=NSStringFromSelector(action);

    //菜单中只会出现copy

    if ([selName isEqualToString:@"copy:"]) {

        return YES;

    }

    return NO;

}

 

- (void)collectionView:(UICollectionView *)collectionView performAction:(SEL)action forItemAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender

{

    //可以执行一些拷贝粘贴等操作

    //详细的东西请看 UIPasteboard

    //点击Copy要执行的方法

    NSString * selName=NSStringFromSelector(action);

    NSLog(@"%@",selName);

}

 

iOS collection长按编辑功能

标签:

原文地址:http://www.cnblogs.com/tongyuling/p/4885561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!