oc字符串输入

来源:互联网 发布:nginx修改默认根目录 编辑:程序博客网 时间:2024/06/16 15:31

  UITextView *textView = [[UITextViewalloc]initWithFrame:self.view.bounds];

    [self.viewaddSubview:textView];

    self.textView = textView;

    [self.textViewsetFont:[UIFontsystemFontOfSize:32]];

    

    unichar emoteChar = 0xe000;

    NSMutableString *string = [NSMutableStringstring];

    

    for (int i =0; i < 3000; i++) {

        [string appendFormat:@"%C ", emoteChar++];

    }

    

    [self.textViewsetText:string];

0 0
原创粉丝点击