4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

null空文字チェック

Last updated at Posted at 2013-01-07
if ( ! (value == nil || [value isEqualToString:@""])) {
    // nullじゃない場合の処理
}

ObjCnilの場合メソッドの返り値に0を返します。こちらの方が良い模様。
if ([value length] > 0)
4
4
2

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
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?