开发需要用到知道文字内容,查了下资料找到了方法,拿出来与大家共享一下
UIPasteboard * pasteboard = [UIPasteboard generalPasteboard];
pasteboard.string = button.titleLabel.text;
pasteboard.string : 这个就是所需要复制的内容 直接进行赋值即可
开发需要用到知道文字内容,查了下资料找到了方法,拿出来与大家共享一下
UIPasteboard * pasteboard = [UIPasteboard generalPasteboard];
pasteboard.string = button.titleLabel.text;
pasteboard.string : 这个就是所需要复制的内容 直接进行赋值即可