我有一个滚动视图,它将包含我从网上下载的一些图像。我将这些图像添加到滚动视图中,但在它们之间添加黑色空间时遇到问题。它们处于垂直卷轴而非水平。我一直在考虑尝试添加一个空间,但无法弄清楚如何去做。任何帮助,将不胜感激。 这是我到目前为止所拥有的;
<?php
class Post
{
//Define placeholders
public $title = 'Post Title';
public $timestamp = 'TIMESTAMP';
public $author = 'Author';
public $author_url = '/user/'. $author;
$post_boilerplate = <<<EOF
<div class="blog-post">
<h2 class="blog-post-title"> $this->title </h2>
<p class="blog-post-meta">$this->timestamp by <a href="$this->author_url">$this->author</a></p>
<p>Blah, blah, blah...</p>
</div><!-- /.blog-post -->
EOF;
public function print_post() {
echo $this->post_boilerplate;
}
}
$post = new Post();
$post->print_post();
?>
答案 0 :(得分:1)
在图像之间添加一些空格。如果您的图像高度为200点,则将示教图像的y位置设为Int(self.myImages * 210)
。
或更好,用图像高度常数表示:
let imageHeight = 200
let imageWidth = 200
let image = UIImage(data: data)
let imageView = UIImageView(image: image);
imageView.frame = CGRect(
x: 0,
y: Int(self.myImages * imageHeight + 10),
width: Int(self.myScrollView.frame.size.width),
height: imageHeight)
我不知道默认情况下滚动视图的背景是白色还是黑色。您可能必须将滚动视图的contentView的backgroundColor设置为黑色。