View

来源:互联网 发布:达观数据 陈运文履历 编辑:程序博客网 时间:2024/04/29 22:17

 //1.

     UIView *detailView = [[UIView alloc]init];

    detailView.frame = CGRectMake(0, 280, 320, 90);

    detailView.backgroundColor = [UIColor colorWithRed:235/255.0 green:235/255.0 blue:235/255.0alpha:1.0];

    [self.view addSubview:detailView];

    [detailView release];

   

 //2.

    UITextView *textview=[[UITextView alloc]initWithFrame:CGRectMake(0,250,320,60)];

    textview.text=@"温馨提示:多人合影人脸过小、倾斜照片都可能无法通过审核。";

    textview.font=[UIFont systemFontOfSize:15];

    [textview setEditable:NO];


//3.

    UILabel *labl =  [[UILabel alloc]init];

    [labl setNumberOfLines:0];

    labl.frame=CGRectMake(1, 250, 320, 90);

    labl.text=@"温馨提示:多人合影人脸过小、倾斜照片都可能无法通过审核。";

    [self.view addSubview:labl];

    [labl release];

原创粉丝点击