Is there a (material) difference between referencing an Objective-C class using the class name directly versus the ‘class’ keyword with string “literal”?
Using NSURL as an example:
set theNSURL to current application's NSURL's fileURLWithPath:posixPath
Compared to:
set theNSURL to current application's class "NSURL"'s fileURLWithPath:posixPath
Thanks,
Lance