LoginSignup
41
37

More than 5 years have passed since last update.

Swiftでクラス名や関数名等をログ出力する

Last updated at Posted at 2017-06-06

概要

リテラル等を利用して、デバッグ時にクラス名や関数名等をログ出力する方法をまとめます。
(Swift3)

NSStringFromClassを利用する

プロジェクト名

// 出力例: SampleProject
print(NSStringFromClass(type(of:self)).components(separatedBy: ".")[0])

クラス名

// 出力例: ViewController
print(NSStringFromClass(type(of:self)).components(separatedBy: ".")[1])

// こんな書き方もあります
print(String(describing: self))

リテラル表現を利用する

ファイルパス

// 出力例: /Users/[username]/Desktop/Sample/Sample/ViewController.swift
print(#file)

関数名

// 出力例: viewDidLoad()
print(#function)

ファイル内の行番号

// 出力例: 34
print(#line)

ファイル内の列番号

// 出力例: 15
print(#column)

参考:The Swift Programming Language (Swift 4) / Literal Expression

41
37
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
41
37