Well I have Just started digging about memory management concepts in iOS.
I know what are strong , weak , assign ... so on.
But I am confused in two things:
- When should I use Strong and When I use Weak
- When using weak will create problem.
Suppose I have a Class.
ViewController.h
@property (weak) NSString *myString;
Now I want to know whether at some point it will create any problem ? If Yes then How and when ?