@interface NSString : NSObject (NSObject is a base class of NSString class).
You can use below methods for allocation of string class:
- (instancetype)init
+ (instancetype)new
+ (instancetype)alloc
For Copy any object :
- (id)copy;
- (id)mutableCopy;
For compare objects :
- (BOOL...