cocoa - Is there a fast way to see if a method is wired/bound from any xib file in my project ? -
is there fast way see if method wired/bound xib file in project ?
in other terms, need know if can rid of such method or used in interface builder.
thanks
i not think xcode has filter bound ibactions. guess we're left 2 possible solutions:
visually identify bound methods (here did search
ibaction. bound actions denoted filled circle, while unbound actions empty circles). although method works, it's not useful when have lot of connections going on.
parse
xmlproduced interface builder. if take @xib/storyboardfiles, see there<connections>tags<action>children similar this:<action selector="fingeroff:" destination="ars-ip-845" eventtype="touchdragoutside" id="1nx-xz-k1i"/>,selectormethod signature. guess parse xmls , make list of bound methods (also nice idea app!)
if though has better way dealing problem, please share!
Comments
Post a Comment