の丸い角を削除する必要がUIView
ありUIViewcontroller
ます。これがその画像です
私は詳細ビューを提示しています
detailView.modalPresentationStyle = UIModalPresentationFormSheet;
UIViewcontroller
角を丸くせずに提示したい。誰かがこの問題について考えを持っていますか?
の丸い角を削除する必要がUIView
ありUIViewcontroller
ます。これがその画像です
私は詳細ビューを提示しています
detailView.modalPresentationStyle = UIModalPresentationFormSheet;
UIViewcontroller
角を丸くせずに提示したい。誰かがこの問題について考えを持っていますか?
//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内で表示できます。