Top "Objective-c" questions

This tag should be used only on questions that are about Objective-C features or depend on code in the language.

NSString with \n or line break

Does anyone know how to use line breaks in NSString? I need to do something like this - [NSString stringWithFormat:@"%@,\…

objective-c nsstring newline
UIImageView - How to get the file name of the image assigned?

Is it possible to read the name of an UIImageView's UIImage that's presently stored in the UIImageView? I was hoping …

ios objective-c swift uiimageview uiimage
Select tableview row programmatically

How do I programmatically select a UITableView row so that - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath gets executed? …

iphone objective-c cocoa-touch uitableview
GCD to perform task in main thread

I have a callback which might come from any thread. When I get this callback, then I would like to …

objective-c grand-central-dispatch
Can I force a UITableView to hide the separator between empty cells?

When using a plain-style UITableView with a large enough number of cells that the UITableView cannot display them all without …

ios objective-c cocoa-touch uitableview
boundingRectWithSize for NSAttributedString returning wrong size

I am trying to get the rect for an attributed string, but the boundingRectWithSize call is not respecting the size …

objective-c nsattributedstring
How to calculate UILabel width based on text length?

I want to display an image next to a UILabel, however UILabel has variable text length, so I don't know …

ios objective-c swift uikit uilabel
Base64 Decoding in iOS 7+

I have Encoded text(NSString) using NSData Class new API which is Added in iOS7. using this - (NSData *)dataUsingEncoding:(…

ios objective-c swift ios7 ios8
How to make UIButton's text alignment center? Using IB

I can't set the title of UIButton using IB as center. My title is multi line.It is giving like …

ios objective-c uibutton interface-builder
How can I convert NSDictionary to NSData and vice versa?

I am sending NSString and UIImage using bluetooth. I decided to store both in a NSDictionary and then convert the …

iphone objective-c ios nsdictionary