码迷,mamicode.com
首页 > 其他好文 > 详细

复制功能的实现

时间:2015-12-04 20:20:37      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

#pragma mark - copyCodeMethod

- (void)copyMethod:(UIButton *)button {
   
    if (button.tag == 7000) {
        UIPasteboard *pboard = [UIPasteboard generalPasteboard];
        pboard.string = content.text;
        NSLog(@"%@", pboard.string);
    }
   
    UIView *bigView = (UIView *)button.superview;
   
    for (int i = 0; i < self.codeArray.count - 1; i++) {
        if (button.tag == 5000 + i) {
            UILabel *conten = (UILabel *)[bigView viewWithTag:6000 + i];
                
                NSLog(@"%@", pboard.string);
           
        }
    }
}

复制功能的实现

标签:

原文地址:http://www.cnblogs.com/tian-sun/p/5019991.html

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