tags:

views:

47

answers:

2

Quick question, could anyone help me out with regards to writing this without dot notation? (i.e. [self setView? ...)

self.view.transform = CGAffineTransformIdentity;

many thanks, gary

+4  A: 
[[self view] setTransform:CGAffineTransformIdentity];
DyingCactus
Many thanks, I see how that works, thank you.
fuzzygoat
+1  A: 
[[self view] setTransform: CGAffineTransformIdentity];
Graham Lee
Thank you Graham.
fuzzygoat