Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
475 views
in Technique[技术] by (71.8m points)

ios8 - Overlapping cells in static tableview built using storyboard

All,

I'm using the Xcode 6 beta to build an iOS8 project using storyboard and swift. In the storyboard, I've created a Table View Controller as my primary view when the application loads and have added a label to the first cell and a label to the second cell.

The table looks fine in the storyboard, but when I run the application, the cells overlap. This is a brand new project with no other changes made or code added.

You can see both the storyboard and the running application in the photo below. Any ideas on what could be driving this?

Additionally, when I try to add a button to one of the cells, I get a grey box that covers 90% of the view.

enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I think I've had this issue. Try making some Auto Layout connections from the label to the Content View of the cell, and from the table view (and its cells) to the containing view, to force the views to be the proper size.

The following worked for me.

  1. Control-click and drag from your label to left side of the cell it's in. When the modal comes up, check the box for 'Leading Space to Container'.
  2. Repeat the same Control-click and drag process for each side of the cell, selecting the relevant Auto Layout option when it appears.
  3. (Optional) Try to Control-click and drag from your table view to the each side of the containing view (if there is one), and repeat the steps from above.

Hopefully this works for you.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...