I want to know If I can initialize a UILabel
from another initialized UILabel
Like this :
_brandNameLabel = [[SharedDataObject shared]brandNameLabel];
[[self view]addSubview:_brandNameLabel];
I found that this code will create a pointer to the initialized object, so what is the way to initialize my new object ?