質問

I like how the Trulia Mobile iPhone app search result has the photo span the entire table view cell and puts the text details in the lower left corner. How does one code that? Is there a tutorial that covers such an approach?

The closest solution I see is the book "iOS 7 By Tutorials", Chapter 8, section "Blur effects”.

Trulia Mobile app search results

役に立ちましたか?

解決

Not so hard!

  1. Make a prototype UITableView
  2. Make a custom UITableViewCell class
  3. link class to your storyboard
  4. Put your labels and stuff in your UITableViewCell prototype
  5. Link your outlets etc to your code (UITableViewCell Class)
  6. Setup your UITableView rowForIndexPath by doing: CustomClass *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

Try finding a tutorials how to setup an custom prototype cell

EDIT: Here is a link

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top