摘要:uipasteboard有系統級別和應用級別兩種型別,所以不僅可以在應用程式內通訊,還能在應用程式間通訊,比如我複製乙個url,然後開啟safari,貼上到位址列去,而我們可以在應用程式間通訊、共享資料。
全域性使用
//系統級別
uipasteboard *pasteboard = [uipasteboard generalpasteboard];
pasteboard.string = self.ptextfield
.text
; nslog(@"\r\n====>輸入框內容為:%@\r\n====>剪下板內容為:%@",self.ptextfield
.text,pasteboard.string);
內部使用--copy
//應用內單獨使用時
nsstring * strbuildid = [[[nsbundle mainbundle]infodictionary]objectforkey:@"cfbundleidentifier"];
uipasteboard * mypasteboard = [uipasteboard pasteboardwithname:strbuildid create:yes];
mypasteboard.string = @"複製測試資料";
內部使用--paste
nsstring * strbuildid = [[[nsbundle mainbundle]infodictionary]objectforkey:@"cfbundleidentifier"];
uipasteboard * mypasteboard = [uipasteboard pasteboardwithname:strbuildid create:no];
self
.plabel
.text = mypasteboard.string;
貼上複製Android複製和貼上的實現
最近研究貼上複製,稍微總結一下,以後繼續補充 main.xml如下 mainactivity如下 每日一道理 漫漫人生路,誰都難免會遭遇各種失意或厄運。在淒風苦雨 慘霧愁雲的考驗面前,乙個強者,是不會向命運低頭的。風再冷,不會永遠不息 霧再濃,不會經久不散。風息霧散,仍是陽光燦爛。package c...
VIM複製和貼上
1.複製 複製的命令是y yank 1 y 在使用v模式選定了某一塊的時候,複製選定塊到緩衝區用 2 yy 複製整行 nyy或者yny 複製n行,n為數字 3 y 複製當前到行頭的內容 4 y 複製當前到行尾的內容 5 yw 複製乙個word nyw或者ynw,複製n個word,n為數字 6 yg ...
iOS開發之複製字串到剪貼簿
這次需求有複製功能,把字串複製到系統剪貼簿,1.在 view 裡貼上scrollview 2.在scrollview裡貼上 uitextview,用於上下滑動展示完整資料 邀請鏈結 uiview linkview2 uiview alloc init linkview2.backgroundcolo...