Фон и цель
Цель: Я хочу повернуть и перевернуть UITextView
. (Почему: см. мой предыдущий вопрос)
Проблема: Если я делаю преобразование непосредственно на UITextView
, макет текста перепутается по неизвестной причине.
Решение: Поместите UITextView
в контейнер UIView
, а затем выполните преобразование в контейнере.
Новая проблема: Автоматическая компоновка (или любой вид макета) на повернутом виде становится основной головной болью.
Предлагаемое решение: Создайте подкласс UIView
, который действует как дополнительный контейнер для повернутого и переворачиваемого UIView
. Затем автоматически настраивается автоматический макет.
Текущая проблема
Он работает, когда все сначала появляется (UITextView
имеет желтый фон):
но при изменении ориентации происходит следующее (синий - это подкласский фон UIView
, установленный в IB):
Если я отключу строку rotationView.addSubview(textView)
, тогда вид контейнера вращения (красный) будет полностью отредактирован, даже при изменении ориентации:
Поэтому проблема должна заключаться в том, где я добавляю UITextView
. Но как мне это сделать?
Код
class MongolTextView: UIView {
// properties
var rotationView: UIView!
var textView: UITextView!
// This method gets called if you create the view in the Interface Builder
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
}
// This method gets called if you create the view in code
override init(frame: CGRect){
super.init(frame: frame)
self.setup()
}
override func awakeFromNib() {
super.awakeFromNib()
self.setup()
}
func setup() {
rotationView = UIView(frame: self.frame)
rotationView.backgroundColor = UIColor.redColor()
self.addSubview(rotationView)
textView = UITextView(frame: CGRectZero)
textView.backgroundColor = UIColor.yellowColor()
textView.text = "This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text This is some text "
}
override func layoutSubviews() {
super.layoutSubviews()
// set the size of the rotation container view
let width = self.bounds.width
let height = self.bounds.height
rotationView.frame = CGRect(origin: CGPoint(x: CGFloat(0), y: CGFloat(0)), size: CGSize(width: height, height: width))
textView.frame = rotationView.bounds // Problem lines here???
rotationView.addSubview(textView) // Problem lines here???
// rotate, translate, and flip the container view
var rotation = CGAffineTransformMakeRotation(CGFloat(-M_PI_2))
// the following translation repositions the top left corner at the origin of the superview
var translation = CGAffineTransformMakeTranslation((rotationView.bounds.height / 2)-(rotationView.bounds.width / 2), (rotationView.bounds.width / 2)-(rotationView.bounds.height / 2))
var rotationAndTranslation = CGAffineTransformConcat(rotation, translation)
var transformPlusScale = CGAffineTransformScale(rotationAndTranslation, CGFloat(-1), CGFloat(1))
rotationView.transform = transformPlusScale
}
}
Если я не могу заставить это работать...
Хотя я сейчас столкнулся с этой стеной, мой следующий план - переопределить drawRect()
для выполнения преобразований. Однако это не мой первый выбор, потому что производительность, как предполагается, замедляется, делая это.