Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to select the second parameter when using Code completion in Xcode?

Tags:

xcode

ios

For example, when I type application, there are many options provided. The first parameter is always application, but the second parameter is quite different. The default selection is the first item: application:didFinishLaunchingWithOptions:, but what I want is another item: application:handleEventsForBackgroundURLSession:completionHandler: , and its second parameter starts with 'h'. So how would I get this method quickly and strait forward (not by down arrow)?

enter image description here

like image 245
userFromEast Avatar asked Oct 21 '22 03:10

userFromEast


1 Answers

I think you will love this plugin:

https://github.com/FuzzyAutocomplete/FuzzyAutocompletePlugin

enter image description here

How to Install

like image 180
ZYiOS Avatar answered Oct 23 '22 01:10

ZYiOS