A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© Jony.Lee 中级黑马   /  2014-5-22 01:10  /  940 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

#import "JonyViewController.h"

@interface JonyViewController ()


//显示结果
@property (weak, nonatomic) IBOutlet UILabel *result;

@property (assign, nonatomic) NSMutableString *str1;

//监听按钮按
- (IBAction)btn:(UIButton *)sender;

@end

@implementation JonyViewController


- (void)viewDidLoad
{
    [super viewDidLoad];
        // Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (IBAction)btn:(UIButton *)sender {
    [_str1 appendString:@"wocao"];
    NSLog(@"%@",_str1);

   
    NSMutableString *str = [[NSMutableString alloc] init];
   
    [str appendString:@"wocap"];
    NSLog(@"%@",str);
}
@end

红色代码为什么为空

评分

参与人数 1技术分 +1 收起 理由
wanzhu159 + 1

查看全部评分

4 个回复

倒序浏览
希望楼主以后贴代码用代码模式,不要直接贴上来!
回复 使用道具 举报
_str一开始是为nil的,你给nil appendString 无意义,所以为空。
回复 使用道具 举报
一只小菜鸟 发表于 2014-5-22 14:12
_str一开始是为nil的,你给nil appendString 无意义,所以为空。

谢谢,今天已经搞明白了

回复 使用道具 举报
一只小菜鸟 发表于 2014-5-22 14:12
_str一开始是为nil的,你给nil appendString 无意义,所以为空。

支持一下
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马