Skip to content

Instantly share code, notes, and snippets.

@sahara-ooga
Last active January 8, 2018 09:33
Show Gist options
  • Save sahara-ooga/04a3f8159743fe51187290f6087cbedd to your computer and use it in GitHub Desktop.
Save sahara-ooga/04a3f8159743fe51187290f6087cbedd to your computer and use it in GitHub Desktop.
Swift ライブラリ調査

iOSフレームワークを作る

メソッドを持つだけのフレームワーク

以下のログ関数を持つフレームワークを作る。

func logPrint(strings:String...,
              file:String = #file,
              line:Int = #line,
              column:Int = #column,
              function:String = #function){
    print("logPrint>>>>>>>>>>>>>>>>>>>>>>")
    print("file:",file)
    print("line:",line)
    print("column:",column)
    print("function:",function)
    
    for string in strings {
        print(string)
    }
    
    print("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<")
}

外部ライブラリに依存するフレームワーク

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment