4

の丸い角を削除する必要がUIViewありUIViewcontrollerます。これがその画像ですここに画像の説明を入力してください

私は詳細ビューを提示しています

detailView.modalPresentationStyle = UIModalPresentationFormSheet;

UIViewcontroller角を丸くせずに提示したい。誰かがこの問題について考えを持っていますか?

4

1 に答える 1

7
//You will have to link to the QuartzCore library
#import <QuartzCore/QuartzCore.h>

- (void)viewWillAppear:(BOOL)animated
{
    //set border radius on visibility
    self.view.layer.cornerRadius = 0;
}

- (void) didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation 
{
    //for some reason the cornerRadius resets itself on orientation change
    self.view.layer.cornerRadius = 0;
 }

self.viewは、表示しているViewController内で表示できます。

于 2013-02-20T10:19:08.967 に答える