2014-10-01から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か…

iOS系開発実績一覧

クイズアプリ(消費型アプリ内課金機能とFacebook・Twitter・メールアドレスログイン機能実装を担当。サーバ側APIもC#で実装) 薬歴記録アプリ(企業向けiPadアプリ。Windowsサーバ連携。SQlite使用。) 天気予報アプリ(外部APIより天気情報取得) 連絡先テキスト…

iOS8にてpresentViewControllerで元画面を見えるようにする

[viewController setModalPresentationStyle:UIModalPresentationOverFullScreen];

NSNumberのNSMutableArrayのソート

// 昇順 NSArray *numbers = [numbers sortedArrayUsingSelector:@selector(compare:)]; // 降順 NSSortDescriptor *descDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"self" ascending:NO]; NSArray *numbers = [numbers sortedArrayUsingDescri…