GBA003/External/Roxas/Roxas.playground/Contents.swift
2024-05-30 10:22:15 +08:00

11 lines
438 B
Swift

//: Playground - noun: a place where people can play
import Roxas
import PlaygroundSupport
let placeholderView = RSTPlaceholderView(frame: CGRect(x: 0, y: 0, width: 320, height: 568))
placeholderView.textLabel.text = "Roxas Playground"
placeholderView.detailTextLabel.text = "Use this Playground to try out Roxas features, and have fun!"
placeholderView.backgroundColor = UIColor.white
PlaygroundPage.current.liveView = placeholderView