It was very strange when I saw this on debugging my application.
int iTag = btnTemp.tag; //btnTemp.tag = 1
NSString *strFriendID = [NSString stringWithFormat:@"%i",iTag];
gave me strFriendID as empty string.
int iTag = btnTemp.tag; //btnTemp.tag = 1
NSString *strFriendID = [NSString stringWithFormat:@"%d",iTag];
gave me strFriendID as 1.
How can this happen?
Thanks,
Nitish

[NSString stringWithFormat:@"[%d|%i]",iTag,iTag]-- what is the result of that? (Note usage of both, the "working" first, and zomg-I-was-tricked guards.) – user166390 Mar 22 '12 at 6:57