zoukankan      html  css  js  c++  java
  • iOS NSString追加字符串的方法

    第一种:

     NSArray *array = [NSArray arrayWithObjects:@"Hello",@" ",@"world", @"!", nil];
     NSString *printStr = @"";
     for(int i = 0; i < [array count]; i++){
         printStr = [printStr stringByAppendingFormat:@"%@", [array objectAtIndex:i]];
     }
     NSLog(@"第一种方法%@", printStr);

    第二种:

     NSArray *array = [NSArray arrayWithObjects:@"Hello",@" ",@"world", @"!", nil];
     NSMutableString *printStr2 = [[NSMutableString alloc] init];
     for(int i = 0; i < [array count]; i++){
          [printStr2 appendFormat:@"%@", [array objectAtIndex:i]];
     }
     NSLog(@"第二种方法%@", printStr2);

    输出结果:

    2015-06-01 21:33:52.964 String追加字符串[28638:601104] 第一种方法Hello world!
    2015-06-01 21:33:52.965 String追加字符串[28638:601104] 第二种方法Hello world!
  • 相关阅读:
    kolla
    lbaas
    celery
    redis发布订阅
    数据库简单介绍
    celery
    ansible初识
    315
    request
    navicat连接mysql报错1251解决方案
  • 原文地址:https://www.cnblogs.com/wb145230/p/4545005.html
Copyright © 2011-2022 走看看