Questions tagged [cells]

Cells are atomic elements within a structure composed of columns and/or rows, such as a table or grid.

Cells can contain hardcoded values, computed values based on functions, visualizations based on computed values, or external objects.

References

814 questions
-4
votes
1 answer

Changing background image of table dynamically

I'm trying to change the background images of table cells with Javascript and I do so by creating the name of the image inside the code using the counter index in a for loop (i) This doesn't work, can somebody explain why and how to do it…
Not Amused
  • 942
  • 2
  • 10
  • 28
-5
votes
1 answer

Tips on putting spacing between cells

How do i add spacing between each cell here - for i in 0...50 { let cell = UIView() cell.backgroundColor = .lightGray cell.frame = CGRect(x: Double(i) * Double(32.52), y: 90, width: 350, height: 500) …
bernan
  • 15
  • 2
-5
votes
7 answers

Difference between `Range`, `Range.Cells`, `Range.Rows`, etc., "subtypes"

EDIT: Sub dump_range below shows that the address does not completely define a Range (as far as operating with its contents is concerned), something that I found surprising, and not clearly stated in MS documentation. There is something else, a…
-6
votes
1 answer

How many table view cells should a table view consist of?

For instance, in the app I'm working on, a user can create a post, and other users are then able to reply to that post. people can then comment the reply. My question is: Would it be better for the memory to split a post with multiple replies and…
Kasper Hansen
  • 72
  • 1
  • 10
1 2 3
54
55