ios - Dynamic printing of class and function -


i beginner xcode , want dynamic printing of function being executed.

so want function display

functionexecuted() executed in classname 

that grab function name , class name dynamically. have already:

class myviewcontroller: viewcontroller {     func appactivity() {         var class: string = "myviewcontroller"         println("\(___function___) executed in \(class)")     }     override func viewdidload() {         // etc. code         appactivity()     } } 

which run appactivity() function when view loaded. have output of:

appactivity() executed in myviewcontroller 

when looking for:

viewdidload() executed in myviewcontroller 

i want retain not having appactivity take input parameters. also, instead of defining class name explicitly, have dynamically name of class function in.

i know might not best way of accomplishing more learning , understanding.

my recommendation in extension. extensions perhaps highlight of swift, imho. can decorate methods, not of own classes, other classes, including framework classes. want know when viewdidload got called of superclass? create extension , watch messages appear in console.

the other advantages:

  • the code not dirtying main class , logic (whatever is)
  • you define extension in test file it's automatically there when running tests , not @ runtime

the swift cocoa code built on extensions in ways inventive, showing of intelligence of aspects, , yet categorical organization of objective c. when combine extensions , protocols, have traits.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -