UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(50, 50, 100, 100)];
imageView.image = [UIImage imageNamed:@"qipao1.png"];
imageView.layer.borderWidth = 10;
imageView.layer.borderColor=[[UIColor blueColor] CGColor];
imageView.layer.cornerRadius = 6;
[self.view addSubview:imageView];