I have following warning to use code in iOS 7.0 it will display that use sizeWithAttribute:
here is the following code that I have used:
messageSize = [theMessage sizeWithFont:[UIFont systemFontOfSize:20.0]];
if any one have suggestion how to remove the above code with sizeWithAttribute:
so please tell me.
CGSize size = [theMessage sizeWithAttributes:
@{NSFontAttributeName:
[UIFont systemFontOfSize:20.0f]}];
Hope it helps...