美文网首页
字符串中含有表情的遍历

字符串中含有表情的遍历

作者: iOS坚持者 | 来源:发表于2018-06-21 14:32 被阅读5次

    NSString *str = @"z😀a😃";

    for(int i=0; i<str.length; i++){
        NSString *s = [str substringWithRange:NSMakeRange(i, 1)];
        NSLog(@"%@",s);
    }
    NSRange range;
    for(int i=0; i<str.length; i+=range.length){
        range = [str rangeOfComposedCharacterSequenceAtIndex:i];
        NSString *s = [str substringWithRange:range]; //attributedSubstringFromRange:range];
        NSLog(@"%@",s);
    }
    NSLog(@"%ld",str.length);
    

    相关文章

      网友评论

          本文标题:字符串中含有表情的遍历

          本文链接:https://www.haomeiwen.com/subject/tdgqyftx.html