IPhone Cells for iPhone: How to Make Them Transparent and Complex

I would like to create a spreadsheet that looks almost the same as in the iPhone contacts app. When you click on a contact, it shows related information. The biggest problem comes when I try to build this: a table with complex cells, with transparent cells, and a cell with two buttons.

How do you do it?

Thanks!

0


a source to share


3 answers


You will need to study the Table Programming Guide which will walk you through the various parts of this. Along with this, you should study the sample code in the TableViewSuite . This example code includes a series of five examples of increasing complexity.



I'm not sure what you mean by "transparent cells". There are no transparent cells in Contacts. What you probably mean is called a grouped table, and you will learn about it in the Programming Guide.

+3


a source


I suggest you browse the Cocoa article fondly on creating custom UITableViewCells as a starting point.



0


a source


If the "transparent cell" you are linking to is the top of the contact information page that displays the contact image and name, then this can help you. You can insert your own headers and footers at the top and bottom of each section of the table. This tutorial details how to add a header view to the first section of a table to display an image and a label, just like in the Contacts app.

0


a source







All Articles