Swift defines the AnyObject type alias to represent instances of any reference type, and it’s internally defined as a protocol.
Consider the following code:
var array = [AnyObject]()
struct Test {}
array.append(Test())
This code generates a compilation error, with the following error message:
Type 'Test' does not conform to protocol 'AnyObject'
The failure is obvious because a struct is a value and not a reference type, and as such it doesn’t implement and cannot be cast to the AnyObject protocol.
Now consider the following code:
var array = [AnyObject]()
array.append(1)
array.append(2.0)
array.append("3")
array.append([4, 5, 6])
array.append([7: "7", 8: "8"])
struct Test {}
array.append(Test())
The array array is filled in with values of type respectively int, double, string, array and dictionary. All of them are value types and not reference types, and in all cases no error is reported by the compiler. Why?
Answer / iosraj
The reason is that swift automatically bridges:
number types to NSNumber
strings to NSString
arrays to NSArray
dictionaries to NSDictionary
which are all reference types.
| Is This Answer Correct ? | 1 Yes | 0 No |
Is swift difficult to learn?
What is mutable and immutable in swift?
What do you mean by initialization?
What are the collection types that are available in swift?
How many types of closures are there in swift?
What is dynamic in swift?
Is swift coding easy?
What is difference between 'let' and 'var' declaration ?
What is difference between weak and strong in swift?
Is swift written in c++?
How to write a multiple line comment in swift?
Consider the following code: var defaults = NSUserDefaults.standardUserDefaults() var userPref = defaults.stringForKey("userPref")! printString(userPref) func printString(string: String) { println(string) } Where is the bug? What does this bug cause? What’s the proper way to fix it?