1, Please see the following code:
const UIView *view = [[UIView alloc] init];
view.tag = 2;
2,In my mind, the "const" meaning the variable can't be changed.
3, So I think I can't change the content of the object which "view" point to,but I can change the view.tag, I don't know why.