LoginSignup
9
11

More than 5 years have passed since last update.

iOSのアプリの四隅を角丸にする

Last updated at Posted at 2014-02-16

概要

iOS6のときは何もしなくてもアプリの四隅が角丸になっていたと思いますが、iOS7からなくなってしまいました。私のように角丸の方が好みだったーという方、いますよね?

AppDelegate.m に2行足すだけでアプリ全体が角丸になりますよ。

コード

AppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
    self.window.layer.masksToBounds = YES; // ビューをマスクで切り取る
    self.window.layer.cornerRadius = 4.0; // 角丸マスクを設定(数値は角丸の大きさ)

    return YES;
}

結果

before.pngafter.png

9
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
11