長按tableViewCell彈出選單欄貼上板

weixin_33907511發表於2017-05-24
效果圖
2348494-ea85c02db07d6ed3.png
長按tableViewCell彈出選單.png
關鍵程式碼

吐槽:今天在寫這個介面的使用用的是QBPopupMenu這個第三方庫,這個點贊量超過了1k,用著也是挺方便的,但是在tableViewCell上面使用的時候出現了一個bug,因為cell複用的原因,在網上找了好久,發現都是抄襲的一兩篇比較早的博文,經過仔細研究終於把bug解決了。

bug現象

1、彈出的選單檢視沒有出現在我想要的地方
2、長按點選時,有時候不出現選單檢視
3、如果把[self.popupMenu showInView:self targetRect:self.bounds animated:YES];這句程式碼寫在自定製cell裡面,沒有出現彈出檢視

注意滑鼠


2348494-a764fc6e29d2b49b.gif
bug.gif
bug解決程式碼
[self.popupMenu showInView:gesture.view.superview targetRect:gesture.view.frame animated:YES];

tableViewCell出現貼上板的方式

  • 1、 tableViewCell的代理事件

    • - (BOOL)tableView:(UITableView *)tableView shouldShowMenuForRowAtIndexPath:(NSIndexPath *)indexPath
  • - (BOOL)tableView:(UITableView *)tableView canPerformAction:(SEL)action forRowAtIndexPath:(NSIndexPath*)indexPath withSender:(id)sender

  • - (void)tableView:(UITableView *)tableView performAction:(SEL)action forRowAtIndexPath:(NSIndexPath*)indexPath withSender:(id)sender

  • 2、使用UIMenuController

  • 3、使用QBPopupMenu

1、 tableViewCell的代理事件
// 允許長按選單
- (BOOL)tableView:(UITableView *)tableView shouldShowMenuForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return YES;
}
// 允許每一個Action
- (BOOL)tableView:(UITableView *)tableView canPerformAction:(SEL)action forRowAtIndexPath:(NSIndexPath*)indexPath withSender:(id)sender
{
    // 可以支援所有Action,也可以只支援其中一種或者兩種Action
    if (action == @selector(copy:) || action == @selector(paste:)) { // 支援複製和黏貼
        return YES;
    }
    return NO;
}
// 對一個給定的行告訴代表執行復制或黏貼操作內容
- (void)tableView:(UITableView *)tableView performAction:(SEL)action forRowAtIndexPath:(NSIndexPath*)indexPath withSender:(id)sender
{
    if (action == @selector(copy:)) { 
        NSLog(@"複製");
        UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
        UIPasteboard *pasteBoard = [UIPasteboard generalPasteboard]; // 黏貼板
        [pasteBoard setString:cell.textLabel.text];
    } else if (action == @selector(paste:)) {
        NSLog(@"黏貼");
        UIPasteboard *pasteBoard = [UIPasteboard generalPasteboard];
        NSLog(@"%@",pasteBoard.string);
    } else if (action == @selector(cut:)) {
        NSLog(@"剪下");
    }
}

效果圖

2348494-9d9c601a90f5bf27.png
螢幕快照 2017-05-24 下午6.45.40.png

如果想要自定製上面的文字,表示不太清楚,知道的同學可以吱一聲。如果想要自定製可以使用UIMenuController

2、使用UIMenuController

UIMenuController,系統預設支援UITextField、UITextView、UIWebView控制元件的UIMenuController相關操作。當我們長按一段文字或者圖片的時候會彈出一個選單,我們通過這個選單可以實現文字等的複製、剪下、刪除以及各種操作。

UIMenuController相關方法

建立一個UIMenuController物件

+ (UIMenuController *)sharedMenuController

顯示或者隱藏選單,注意 在顯示menu之前,一點要確定為menu設定與其相關的顯示位置

@property(nonatomic,getter=isMenuVisible) BOOL menuVisible;        // default is NO
//是否通過動畫進行設定顯示、隱藏
- (void)setMenuVisible:(BOOL)menuVisible animated:(BOOL)animated;

設定menu顯示的位置

/**
 *  設定menu顯示的位置資訊
 *
 *  @param targetRect menu需要顯示的矩形區域
 *  @param targetView targetRect會以targetView的左上角為座標原點進行顯示
 */
- (void)setTargetRect:(CGRect)targetRect inView:(UIView *)targetView;
注意

targetRect一旦設定以後,矩形範圍不會跟隨view的移動而移動,如果view移動,必須相應的更新targetRect 。比如tableView 點選cell出現menu,當按住對應的cell,拖動tableView滾動時,menu不會隨著對應的cell一起滾動---見示例程式碼2
targetRect通常設定為需要彈出menu控制元件的bounds,targetView設定為對應的控制元件本身

自定義menuItem

@property(nonatomic, copy) NSArray <UIMenuItem *> *menuItems

@interface UIMenuItem : NSObject 
//建立UIMenuItem物件
- (instancetype)initWithTitle:(NSString *)title action:(SEL)action ;
@property(nonatomic,copy) NSString *title;
@property(nonatomic)      SEL       action;

資料型別:編輯選單箭頭指向view的位置 。預設取決於view在介面的位置

typedef enum {
 UIMenuControllerArrowDefault,
 UIMenuControllerArrowUp,
 UIMenuControllerArrowDown,
 UIMenuControllerArrowLeft,
 UIMenuControllerArrowRight,
} UIMenuControllerArrowDirection;
自定義控制元件的UIMenuController

一般步驟:

  • 設定控制元件成為第一響應者
  • 建立UIMenuControler
  • 建立UIMenuItem(如果需要自定義item)

在自定製cell裡面

- (void)addGesture{
    UILongPressGestureRecognizer *longPressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressCellHandle:)];
   
    [self addGestureRecognizer:longPressGesture];
}

-(void)longPressCellHandle:(UILongPressGestureRecognizer *)gesture

{
    
    [self becomeFirstResponder];
    
    UIMenuController *menuController = [UIMenuController sharedMenuController];
    
    UIMenuItem *checkItem = [[UIMenuItem alloc] initWithTitle:@"審批" action:@selector(menuBtnPressed:)];
    _checkItem = checkItem;
    UIMenuItem *rejectItem = [[UIMenuItem alloc] initWithTitle:@"駁回" action:@selector(menuBtnPressed:)];
    _rejectItem = rejectItem;
    UIMenuItem *postponeItem = [[UIMenuItem alloc] initWithTitle:@"延期" action:@selector(menuBtnPressed:)];
    _postponeItem = postponeItem;
    UIMenuItem *moreItem = [[UIMenuItem alloc] initWithTitle:@"更多..." action:@selector(menuBtnPressed:)];
    _moreItem = moreItem;
    menuController.menuItems = @[checkItem,rejectItem,postponeItem,moreItem];
    
    [menuController setTargetRect:gesture.view.frame inView:gesture.view.superview];
    
    [menuController setMenuVisible:YES animated:YES];
    
    [UIMenuController sharedMenuController].menuItems=nil;
    
}


-(BOOL)canBecomeFirstResponder

{
    return YES;
}

-(BOOL)canPerformAction:(SEL)action withSender:(id)sender

{
   
    if (action == @selector(menuBtnPressed:)) {
        
        return YES;
        
    }
    
    return NO;
    
}

#pragma mark ---- 選單按鈕執行事件 ----
-(void)menuBtnPressed:(UIMenuItem *)menuItem

{
    
}
防止拖動tableView時產生的BUG

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView
{
    UIMenuController * menu = [UIMenuController sharedMenuController];
    [menu setMenuVisible:NO animated:YES];
}

想要了解更加詳細的內容,可以參考UIMenuController的使用簡介

3、使用QBPopupMenu


- (void)addGesture{
    [self becomeFirstResponder];
    UILongPressGestureRecognizer *longPressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressCellHandle:)];
   
    [self addGestureRecognizer:longPressGesture];
    
    QBPopupMenuItem *item = [QBPopupMenuItem itemWithTitle:@"Hello" target:self action:@selector(action)];
    QBPopupMenuItem *item2 = [QBPopupMenuItem itemWithTitle:@"Cut" target:self action:@selector(action)];
    QBPopupMenuItem *item3 = [QBPopupMenuItem itemWithTitle:@"Copy" target:self action:@selector(action)];
    QBPopupMenuItem *item4 = [QBPopupMenuItem itemWithTitle:@"Delete" target:self action:@selector(action)];
    QBPopupMenuItem *item5 = [QBPopupMenuItem itemWithImage:[UIImage imageNamed:@"clip"] target:self action:@selector(action)];
    QBPopupMenuItem *item6 = [QBPopupMenuItem itemWithTitle:@"Delete" image:[UIImage imageNamed:@"trash"] target:self action:@selector(action)];
    NSArray *items = @[item, item2, item3, item4, item5, item6];
    
    QBPopupMenu *popupMenu = [[QBPopupMenu alloc] initWithItems:items];
    popupMenu.highlightedColor = [[UIColor colorWithRed:0 green:0.478 blue:1.0 alpha:1.0] colorWithAlphaComponent:0.8];
    self.popupMenu = popupMenu;
}

-(void)longPressCellHandle:(UILongPressGestureRecognizer *)gesture

{
    [self.popupMenu showInView:gesture.view.superview targetRect:gesture.view.frame animated:YES];
}

當時我寫的時候主要是這句程式碼沒有理解好

-(void)longPressCellHandle:(UILongPressGestureRecognizer *)gesture

{
   [self.popupMenu showInView:gesture.view.superview targetRect:gesture.view.frame animated:YES];
}
簡單的總結一下,希望能過幫助跟我遇到一樣問題的小朋友

相關文章