NSString *str = @"你要放在label里的文本字符串  \n  换行符";

// 当然需要先获得label 的UILabel的实例

label.numberOfLines = 0; // 最关键的一句!!!!!!

label.text = str;