2014-10-24から1日間の記事一覧

カスタムキーボードの領域高さを変更する

swiftで、これで成功しました。 override func viewDidAppear(animated: Bool) { let heightConstraint = NSLayoutConstraint( item:self.view, attribute:NSLayoutAttribute.Height, relatedBy:NSLayoutRelation.Equal, toItem:nil, attribute:NSLayoutAttr…

カスタムキーボード作成時エラー

iOS8から作成可能なカスタムキーボードを作成している時に Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier. が出た時の対応。 カスタムキーボードのTargetのバイナリ名を変更しました。 (本体となるTargetか…