如何在使用实时视图时更改Xcode Playground Simulator的大小?

时间:2017-04-02 00:25:49

标签: swift xcode swift-playground

我在iPad上创建了一个Swift Playground,并将我的所有图形定位在iPad模拟器上。有谁知道如何编辑Xcode游乐场模拟器的大小?提前致谢。

3 个答案:

答案 0 :(得分:7)

要更改游乐场的liveView大小,请设置viewController的preferredContentSize。

import PlaygroundSupport
import UIKit

let viewController = UIViewController()
viewController.preferredContentSize = CGSize(width: 600, height: 600)
PlaygroundPage.current.liveView = viewController

答案 1 :(得分:1)

<tbody>   
<?php while($result = $stmt->fetch()): ?>        
<tr>
    <td clas="text-center">#</td>
    <td><?php echo $id; ?> </td>
    <td><?php echo $first_name; ?> </td>
    <td><?php echo $last_name; ?> </td>
    <td class="text-center">Details</td>
</tr>
<?php endwhile; ?>

答案 2 :(得分:1)

import PlaygroundSupport
import UIKit

let viewController = UIViewController()
viewController.view.frame = CGRect(x: 0, y: 0, width: 320, height: 568)
PlaygroundPage.current.liveView = viewController

在我看来,这是目前唯一可用的示例(Xcode 12.5)。 设置 view.frame 是这里的关键。