3

UIView を XIB ファイルに取りました。このビューには、UIImageView と同じサイズのボタンがあります。そのビューを丸くしたいので、そのためにcornerRadiusを使用しています。ビューのサイズは 92 * 92 です。これは、角を丸くするために 46 の角半径を取っている理由です。以下は私のコードで、コード自体にある問題についてコメントしています。

- (void)viewDidLoad
{   
    [super viewDidLoad];
    _roundView.layer.cornerRadius = 46;
    flag=0;
    selectImage.layer.cornerRadius = 46;
    NSLog(@"%f",_roundView.frame.size.height);
    NSLog(@"%f",_roundView.frame.size.width);

    imageFrame = selectImage.frame;
    // when first view appear its perfectly round 
    // this is how i pick image from gallery 


    - (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo: (NSDictionary *)info {
    self.lastChosenMediaType = [info objectForKey:UIImagePickerControllerMediaType];
    if ([lastChosenMediaType isEqual:(NSString *)kUTTypeImage]) {
        UIImage *chosenImage = [info objectForKey:UIImagePickerControllerEditedImage];
        UIImage *shrunkenImage = shrinkImage(chosenImage, imageFrame.size);
        self.imagee = shrunkenImage;

        NSLog(@"%f",_roundView.frame.size.height); nslog = 92
        NSLog(@"%f",_roundView.frame.size.width);   nslog = 92
        NSLog(@"%f",_roundView.layer.cornerRadius); nslog = 46

        NSLog(@"%f",selectImage.frame.size.height);   nslog = 92
        NSLog(@"%f",selectImage.frame.size.width);   nslog = 92
        NSLog(@"%f",selectImage.layer.cornerRadius); nslog = 46

        selectImage.image = imagee;
        selectImage.layer.cornerRadius = 46;

        // now the issue is Image gets selected but it become rectangular 92 * 92 
    }

    [picker dismissModalViewControllerAnimated:YES];
}
4

3 に答える 3

2

これを使ってみてください..

_roundView.layer.masksToBounds = YES; 
于 2013-07-10T05:49:27.917 に答える