//允許 Menu菜單
- (BOOL)tableView:(UITableView *)tableView shouldShowMenuForRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
//每個cell都會點擊出現Menu菜單
- (BOOL)tableView:(UITableView *)tableView canPerformAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender
{
return YES;
}
- (void)tableView:(UITableView *)tableView performAction:(SEL)action forRowAtIndexPath:(NSIndexPath *)indexPath withSender:(id)sender
{
if (action == @selector(copy:)) {
[UIPasteboard generalPasteboard].string = [self.array objectAtIndex:indexPath.row];
}
if (action == @selector(cut:)) {
[UIPasteboard generalPasteboard].string = [self.array objectAtIndex:indexPath.row];
[self.array replaceObjectAtIndex:indexPath.row withObject:@""];
[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];
}
if (action == @selector(paste:)) {
NSString *pasteString = [UIPasteboard generalPasteboard].string;
NSString *tempString = [NSString stringWithFormat:@"%@%@",[self.array objectAtIndex:indexPath.row],pasteString];
[self.array replaceObjectAtIndex:indexPath.row withObject:tempString];
[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];
}
}
UITableViewCell長按出現 復制粘貼
最后編輯于 :
?著作權歸作者所有,轉載或內容合作請聯系作者
- 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來富腊,“玉大人坏逢,你說我怎么就攤上這事∽副唬” “怎么了是整?”我有些...
- 正文 為了忘掉前任事秀,我火速辦了婚禮彤断,結果婚禮上,老公的妹妹穿的比我還像新娘易迹。我一直安慰自己宰衙,他們只是感情好,可當我...
- 文/花漫 我一把揭開白布睹欲。 她就那樣靜靜地躺著供炼,像睡著了一般。 火紅的嫁衣襯著肌膚如雪窘疮。 梳的紋絲不亂的頭發(fā)上袋哼,一...
- 文/蒼蘭香墨 我猛地睜開眼身冬,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了岔乔?” 一聲冷哼從身側響起酥筝,我...
- 正文 年R本政府宣布要出,位于F島的核電站鸳君,受9級特大地震影響,放射性物質發(fā)生泄漏患蹂。R本人自食惡果不足惜弃理,卻給世界環(huán)境...
- 文/蒙蒙 一蹋盆、第九天 我趴在偏房一處隱蔽的房頂上張望原在。 院中可真熱鬧,春花似錦批糟、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至弹惦,卻和暖如春否淤,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背棠隐。 一陣腳步聲響...
推薦閱讀更多精彩內容
- 在iOS開發(fā)中摄凡,我們可能有需求需要長按某個控件來復制內容续徽。 第一種情況,直接使用tableview的方法來調用系統...
- UITextField 長按復制粘貼等框里等功能的編輯,取消 一谷扣、在開發(fā)中我們會遇到需要去掉 UITextFie...
- 項目臨近上線会涎,遇到了奇葩問題裹匙,ionic中的文字是無法像普通wap頁面一樣復制粘貼的。翻了翻官方文檔和中文網站末秃,都...