What is the equivalent of Java Object in Swift?

user594883

I'm a noobie in Swift. I would like to pass an instance of GameViewController or GameScene to a HelperClass as follows. In java I could use Object for this. How is this done in Swift?

func getHighscores(leaderboardID: String, caller: **whatTypeHere**) {
...
}

so basically I want to notify the right caller when I get the highscores from the GameCenter.

Petr Lazarev

As I understand you want "caller" to be any type you want. In this case you need to use "AnyObject" type here. Documentation

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

What is the Android Java equivalent of a Swift Dictionary?

From Dev

What is the equivalent of a Java HashMap<String,Integer> in Swift

From Dev

What is the equivalent Java collection to a Swift array?

From Dev

What is the "cleartimeout" equivalent for Swift?

From Dev

What is the Swift equivalent of UIGestureRecognizerStateEnded?

From Java

What is the Swift equivalent of respondsToSelector?

From Java

What is the equivalent of @autoreleasepool in Swift?

From Dev

What is the swift equivalent to _cmd?

From Dev

What is the swift equivalent of this cast?

From Dev

What is the swift equivalent of makeObjectsPerformSelector?

From Dev

What is the equivalent for java interfaces or objective c protocols in swift?

From Dev

What is Java function equivalent to Ruby Object#inspect

From Java

Swift equivalent of Java toString()

From Java

What is the Java equivalent for LINQ?

From Dev

What is the 'defer' equivalent for Java

From Dev

What is the equivalent of :: operator in java?

From Java

What is the Swift equivalent of -[NSObject description]?

From Java

What's NSLocalizedString equivalent in Swift?

From Dev

What's the equivalent of finally in Swift

From Dev

What's the equivalent to loadNibNamed in Swift

From Dev

What is the equivalent of "#pragma mark -" in swift?

From Dev

What's the equivalent of CAGradientLayer in swift?

From Dev

What is equivalent of id<type> in Swift?

From Dev

What is the JavaScript equivalent for Swift ?? operator

From Dev

What is the equivalent of KeyValuePair in Swift 3

From Dev

What is the equivalent of colorizing an object in SceneKit?

From Dev

What is the Java equivalent of this Scala code?

From Dev

What is the equivalent of javascript setTimeout in Java?

From Dev

What is the equivalent of stringByFoldingWithOptions:locale: in Java?

Related Related

  1. 1

    What is the Android Java equivalent of a Swift Dictionary?

  2. 2

    What is the equivalent of a Java HashMap<String,Integer> in Swift

  3. 3

    What is the equivalent Java collection to a Swift array?

  4. 4

    What is the "cleartimeout" equivalent for Swift?

  5. 5

    What is the Swift equivalent of UIGestureRecognizerStateEnded?

  6. 6

    What is the Swift equivalent of respondsToSelector?

  7. 7

    What is the equivalent of @autoreleasepool in Swift?

  8. 8

    What is the swift equivalent to _cmd?

  9. 9

    What is the swift equivalent of this cast?

  10. 10

    What is the swift equivalent of makeObjectsPerformSelector?

  11. 11

    What is the equivalent for java interfaces or objective c protocols in swift?

  12. 12

    What is Java function equivalent to Ruby Object#inspect

  13. 13

    Swift equivalent of Java toString()

  14. 14

    What is the Java equivalent for LINQ?

  15. 15

    What is the 'defer' equivalent for Java

  16. 16

    What is the equivalent of :: operator in java?

  17. 17

    What is the Swift equivalent of -[NSObject description]?

  18. 18

    What's NSLocalizedString equivalent in Swift?

  19. 19

    What's the equivalent of finally in Swift

  20. 20

    What's the equivalent to loadNibNamed in Swift

  21. 21

    What is the equivalent of "#pragma mark -" in swift?

  22. 22

    What's the equivalent of CAGradientLayer in swift?

  23. 23

    What is equivalent of id<type> in Swift?

  24. 24

    What is the JavaScript equivalent for Swift ?? operator

  25. 25

    What is the equivalent of KeyValuePair in Swift 3

  26. 26

    What is the equivalent of colorizing an object in SceneKit?

  27. 27

    What is the Java equivalent of this Scala code?

  28. 28

    What is the equivalent of javascript setTimeout in Java?

  29. 29

    What is the equivalent of stringByFoldingWithOptions:locale: in Java?

HotTag

Archive