In Xcode 7.3 and above, you can simply do the following:
For the ReportsListViewController class and the -tableView:numberOfRowsInSection: method:
Copy Certified Symbol Name
Place the cursor anywhere in the method name. Press Shift-Cmd-Ctrl-Option-c (All Modifiers). The following will be added to your clipboard:
-[ReportsListViewController tableView:numberOfRowsInSection:]
Copy Symbol Name
Place the cursor anywhere in the method name. Press Shift-Cmd-Ctrl-c - This will put the following on the clipboard:
-tableView:numberOfRowsInSection:
source share