NSString is the plain-text character-string class in Cocoa and Cocoa Touch.
I want to check an NSString for special characters, i.e. anything except a-z, A-Z and 0-9. I don't need …
cocoa nsstring special-charactersI am building an iPhone app and stuck with the following: unsigned char hashedChars[32]; CC_SHA256([inputString UTF8String], [inputString …
iphone nsstring nsdataI'm developing an iPhone app. In a label, I want to show an user's first letter of the name uppercase. …
ios objective-c swift cocoa-touch nsstringIn my app there is a mechanism that requires that at a certain point two NSStrings will be the same …
cocoa-touch nsstring string-comparisonSo this problem has been perplexing me for way too long. I have a UIAlertView with a textField in it, …
iphone objective-c nsstring int nsnumberI have an NSArray of CalEvents returned with the [CalCalendarStore eventPredicateWithStartDate] method. From the events returned, I am trying to …
objective-c nsstring nsarray nspredicateUsing this code I am able to compare string values. [elementName isEqualToString: @"Response"] But this compares case-sensitively. Is there a …
string cocoa nsstring case-sensitiveHow to covert the NSTimeInterval to NSString? I have NSTimeInterval today = [[NSDate date] timeIntervalSince1970]; I have to give "today" as …
iphone nsstring nstimeintervalWhat is the difference between isEqual: and isEqualToString:? Why are classes adding isEqualTo* methods (isEqualToArray for NSArray, isEqualToData for NSData, ...) …
objective-c iphone cocoa nsstring