I came across something the other day for setting the value of C Structs by using curly braces and it works great but I'm wondering why exactly can I not use it for setting the value of properties?
//This works:
CGPoint pt = {10, 20};
CGRect rct = {0, 5, 50, 50};
//But this doesn't:
self.frame = {0, 5, 50, 50};
imageview.center = {100, 120};
The compiler error is "expected expression"
I think I know why this doesn't work, but I would like a more thorough explanation.