Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am new to this development field in iphone and i want to create list button like this:

http://i.stack.imgur.com/Vi2sP.png

according to above image i want to create custom object in Xcode how can i implement it?

Thanks in Advance..

share|improve this question

2 Answers

up vote 0 down vote accepted

You are talking about “list button” so I guess you want a “list”, i.e. a table view.

You can have a look at UITableViewCell, and more specifically to its imageView, textLabel and detailedTextLabel properties which look like what you want to achieve.

Useful documentation from Apple about tableView cells can be found here

share|improve this answer

Either you create and position your buttons with Interface Builder, either you change the CGRect associated with each UIButton.

For eg : UIButton *b1 = [[UIButton alloc]initWithFrame:(x,y,w,h)];

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.