So I'm trying to access the functionality of an objective-c class,
The objective-c code i'm trying to replicate is:
NSArray *apps = [[LSApplicationWorkspace defaultWorkspace] allInstalledApplications];
currently I can do this:
appWorkspace = ObjCClass('LSApplicationWorkspace')
default = (appWorkspace.defaultWorkspace)
But I can't find a way to access the 'allInstalledApplications' method.. any ideas?