並び順

ブックマーク数

期間指定

  • から
  • まで

241 - 280 件 / 293件

新着順 人気順

UINavigationBarの検索結果241 - 280 件 / 293件

  • WordPressブログをiPhoneネイティブアプリ化(AppleWatch対応版)のチュートリアル 第3回「WebViewでページを表示する」

    ※そして、もしよかったらAppleWatchJournalも定期的にチェックしていただけますと超幸いです。よろしくです。 Webブラウザ画面を作成する作成するアプリでは、テーブルに表示されている記事をタップすると、実際の記事をアプリ内のWebブラウザで表示します。 まずは、そのWebブラウザ画面を作っていきます。 Main.storyboardを開き、ObjectLibraryからView Controllerを選択。 キャンパス内にドラッグ&ドロップ。 続いて、Web ViewをView Controllerの中心にドラッグ&ドロップ。 Add Missing Constraintsで、レイアウトを設定しておきましょう。 ブラウザページの作成はこれだけです。 (「進む」「戻る」「ブックマーク」「リロード」などなど、ブラウザとしての機能を充実させてもいいと思います。参考にした書籍「No.1

      WordPressブログをiPhoneネイティブアプリ化(AppleWatch対応版)のチュートリアル 第3回「WebViewでページを表示する」
    • UINavigationBarやUIToolbarの高さを変更することは禁止されている | インサイドフラッギング

      2011年8月21日日曜日 UINavigationBarやUIToolbarの高さを変更することは禁止されている iOS Human Interface Guidelinesから引用。 iOS UI Element Usage Guidelines > Bars > Navigation Bar On iPhone, take into account the automatic change in navigation bar height that occurs on device rotation. In particular, make sure your custom navigation bar icons fit well in the thinner bar that appears in landscape orientation. Don’t specify the

      • GitHub - sgryschuk/SGNavigationProgress: A category for showing a Messages like progress view on a UINavigationBar

        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

          GitHub - sgryschuk/SGNavigationProgress: A category for showing a Messages like progress view on a UINavigationBar
        • iOS7 対応アプリにする(マイクとUI)

          iOS7が解禁です。 UIが大幅にアップデートするなど, いろいろあるみたいですが, そのおかげで以前に作っていたアプリに 変更を入れないといけないことが判明。SDKの変更をしたら色々出てきたそのレポートです。 変更が必要になってしまった部分 マイクの使用にパーミッションが必要になったこと SDKのアップデータの為に変更を余儀なくされた部分。 storyboard がiOS6, iOS7用のviewに分かれ, iOS7用のviewで不具合が 内容 マイクのパーミッション バージョンの取得と動作 Navigationbarの処理 マイクのパーミッション GPSのデータを使用する際やプッシュ通信の許可と同様に, ダイアログが出てきます(iOS7)。 その許可なくマイクロを使用すると, Applicationが落ちるそうです。 以下のコードを追加します。 if([[AVAudioSession

            iOS7 対応アプリにする(マイクとUI)
          • iOS 7 Navigation Bar text and arrow color

            I want to set background for Navigation Bar to be black and all colors inside it to be white. So, I used this code : [[UINavigationBar appearance] setTitleTextAttributes: [NSDictionary dictionaryWithObjectsAndKeys: [UIColor whiteColor], NSForegroundColorAttributeName, [UIColor whiteColor], NSForegroundColorAttributeName, [NSValue valueWithUIOffset:UIOffsetMake(0, -1)], NSForegroundColorAttributeNa

              iOS 7 Navigation Bar text and arrow color
            • Cocoaの日々: [iOS] UISplitViewController - おぼえ書き

              iPad 用アプリの開発を開始。UISplitViewController について調査した(そのおぼえ書き)。 Split View-based Application Xcode のテンプレートから UISplitViewController を選ぶ。 UISplitViewController を構成するコントローラの指定はInterface Builder のインスペクタで設定してある。 UISplitViewController.viewControllers の中身はこう。 ( "<UINavigationController: 0x4d2e290="">", "<DetailViewcontroller: 0x4d2e5f0="">" )UISplitViewController.view の構成はこう。 UIView |-UILabel |-UIToolbar |-UITo

              • Make UITableView more Reactive with RxSwift

                If, like me, you are bored to always write the same kind of code to make simple things with the UITableView (and UICollectionView), this post is for you! Thanks to RxSwift you can implement simple (and more complex) tableview behaviours with very few line of code. What is RxSwift? This post is not intended to explain you what is the reactive programming paradigm but to understand the following pos

                  Make UITableView more Reactive with RxSwift
                • そーいやー3.1だとUINavigationBarの背景って - 危ない直球notビーンボール

                  前の方法よりも簡単になってたな。そういえば。 こんな感じで。 @implementation UINavigationBar (UINavigationBarCategory) - (void)drawRect:(CGRect)rect { UIImage *img = [UIImage imageNamed: @"image.png"]; [img drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)]; } @end @implementation UIToolbar (CustomImage) - (void)drawRect:(CGRect)rect { UIImage *img = [UIImage imageNamed: @"image.png"]; [img drawInRect:

                  • UINavigationBar に UISegmentControlを置く - その後のその後

                    真ん中に置く場合 UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems: [NSArray arrayWithObjects: @"Daily", @"Weekly", @"Total", nil]]; [segmentedControl addTarget:self action:@selector(segmentChanged:) forControlEvents:UIControlEventValueChanged]; segmentedControl.frame = CGRectMake(0, 0, 180, 30); segmentedControl.segmentedControlStyle = UISegmentedControlStyleBar; segmentedC

                      UINavigationBar に UISegmentControlを置く - その後のその後
                    • UINavigationBarのタイトルフォントサイズを変える - Kazzz's diary

                      同ビューのフォントサイズは視認性を優先してかなり大きめのフォントサイズが使われている。しかし年月日等を他のボタン等と一緒に表示しようと思うと少しフォントサイズを小さくしたいと思うことも多い。 なので変更しようと思ったのだが、対象となるUINavigationController.navigationItemにはUINavigationItem型であり、FontsizeプロパティもFontプロパティも公開されていないため、このままではどうしようも無い。 調べた所タイトルのフォントを変更するにはUINavigationItem.titleViewプロパティでView(UILabel)を置き換えるしかないようだ。 UINavigationItem.titleViewを別なラベルで置き換える(UINavigationController viewDidLoad) UILabel* label =

                      • iOSのUIコンポーネントに使われている色(システムカラー)について - JoyPlotドキュメント

                        iOSアプリのUIコンポーネントに使われている標準色(システムカラー)についてです。 システムが用意している色を自分で追加したボタンなどで使いたいという場合があるかと思います。 システムカラーを取得することができればいいのですが、今の所そういったメソッドやプロパティは存在しないようです。 したがって、システムカラーを自分で使うとすれば、全く同じ値を持つ色を自分で用意することになります。 システムカラーはiOSのアップデートなどで変更になる可能性が高いため、あまり汎用的な方法とは言えませんが、一応システムと同じ色を使うことができます。 青色 UIButton のテキストの標準色、UINavigationBar のナビゲーションアイテム、UIProgressBar のバーの色などに使用される色です。 以下は設定アプリのナビゲーションアイテム(一般と書かれた戻るボタン)です。 UINavigat

                          iOSのUIコンポーネントに使われている色(システムカラー)について - JoyPlotドキュメント
                        • 【Objective-C】UINavigationBarのタイトル色・背景色変更まとめ

                          UINavigationBarを生成したあと、タイトルや背景色を変更したいことがあります。 地味に忘れる設定なのでまとめました。 タイトル色変更 タイトル色はカラーの指定だけで変更できません。 self.navigationItem.titleView というUIViewがありますが、これをViewごと置き換えることで変更できます。 UILabel *title = [[UILabel alloc] initWithFrame:CGRectZero]; title.font = [UIFont boldSystemFontOfSize:16.0]; title.textColor = [UIColor whiteColor]; title.text = @"設定" [title sizeToFit]; self.navigationItem.titleView = title;

                            【Objective-C】UINavigationBarのタイトル色・背景色変更まとめ
                          • UINavigationBarとUIScrollViewずれる! – Scrapple From The Apple

                            iOS7にappを移行してみたら、NavigationBar分Viewが画面下にずれる現象が起こった。しかも、範囲強制している筈のScrollViewが全然効かなくなってしまった。 ひとつづつ確認してみるとView自体がNavigationBarに押し出されているわけではなく、ScrollView内のコンテンツがNavigationBar分スクロールしてしまっているようだ。たしかにscrollView.contentInsetが44pixel下がっている。むりやりこの値を0にしてみたが、アニメーション部分とあいまって妙な動きになってしまう。 どうしたもんかと更に調べてみるとありました。 UIViewControllerにautomaticallyAdjustsScrollViewInsets。これiOS7から追加された用ですが、ScrollViewのinsetを自動的にBar分調整してくれ

                            • ナビゲーションバーの戻るボタンをカスタマイズしたい!! - 黒色槍騎兵のiPhoneアプリ開発日記

                              ナビゲーションバーの戻るボタンは、何もコーディングしなくていいので便利ですよね。普通に使う分には問題ないです。 しかしカスタマイズして、戻る(popViewController)前に処理を入れたい時って困ります。戻るを場合によってはキャンセルしたい場合もあります、例えば、「未保存ですが戻っても良いですか?」と出したい時などです。 ググってみるとナビゲーションバーのバックボタンを、オーバーライドすることができないという記事を発見。 http://osmorphis.blogspot.com/2009/03/trapping-uinavigationbar-back-button.html しかーし、同じところにThree20 Frameworkを使えば似たような、見た目のボタンが使えると書いてありました。 Three20について調べてみると、オープンソースでそこそこ利用実績もある。いろんなア

                              • MFMailComposeViewControllerの確認画面を超絶無視する方法 - Paradigm Shift Design

                                MFMailComposeViewControllerの確認画面がうざい。 一律に、確認しないとメールを送れないようにするんじゃなくて、所定の手続きを踏んでユーザに確認すれば、確認画面を出さないでバックグラウンドでメールを送れるようにして欲しい... で、skpsmtpmessage Quick SMTP client code for the iPhone を使おうかと思ったけど、デフォルトで設定されているE-Mailアカウントを使えない。 それじゃ意味がなさすぎるので。 なんか方法ないかなーってさまよってたら、cocoa touch - iPhone send email not using MessageUI - Stack Overflowというのを見つけた。Sendボタン押しちゃうわけね。絶対、審査とおんないんだろうなぁ。 通んないのかなぁ。とりあえず投げてみてから考えるか。っつ

                                • Flasher向けiPhone講座、レジュメ建設予定地 | fladdict

                                  ちょっと再来週ぐらいに、TiltShift Generatorを一緒に作った森さんと2人で、iPhone x Flasher なセッション(満員)を1つします。 で、僕はiPhoneアプリをどうデザインしますか?的な話をするのだけど、スライドをリアルタイムに作成中。 ぶっちゃけ、みんなどんな話が聞きたいんでしょうか? Twitterとかでリアルタイムに捕まえて、おしえてくださいまし。 夜ぐらいまで、リアルタイムに内容を変えつつ、スライド作っていると思うので、よろしくお願いいたします。 今回は満員ですが、この後しゃべる機会があった場合、これが基本のベースラインになるんじゃないかと思うので、知りたいことあったらお気軽に。 発表内容予定(随時、追加更新中) ・自己紹介 ・fladdictって誰よ? ・事例紹介 ・ToyCamera, QuadCamera, TiltShift Generator

                                  • UIコントロールの対照性 - Kazzzの日記

                                    AndroidとiOSは一般的には似たような画面を持ったアプリケーションを開発していると思われがちだが※、実際には両プラットホームでの画面を構成する部品にはかなりの違いがある。 その違いは画面を構成するUIコントロール(View)において顕著であり、一通り汎用的なUI部品を提供するAndroidに対して、iOSは一貫した画面の見栄えや操作性を実現するために提供されており、互いに同じ用途のUIコントロールを使えるとは限らない。 そこで互いの移植においては悩まないために両プラットホームのUIの対照表を作ってみたのが下の表。ただし、全ての用途を対象にすると凄く多くなるので、アプリケーションでなにか情報を入力、選択するために使用するUIコントールに限っている。 UIコントロール対照一覧 UIコントロールAndroidiOS(UIKit) ラベルandroid.widget.TextViewUILa

                                    • viewWillDisappear: では super をいつ呼ぶべきか - ObjecTips

                                      - (void)viewWillDisappear:(BOOL)animated { [super viewWillDisappear:animated]; // some implements } と - (void)viewWillDisappear:(BOOL)animated { // some implements [super viewWillDisappear:animated]; } どちらが良いの?という議題 Appleのドキュメント Subclasses can override this method and use it to commit editing changes, resign the first responder status of the view, or perform other relevant tasks. For example, you

                                        viewWillDisappear: では super をいつ呼ぶべきか - ObjecTips
                                      • The Complete Guide to NavigationView in SwiftUI

                                        The Complete Guide to NavigationView in SwiftUI Programmatic navigation, customization, and more NavigationView is one of the most important components of a SwiftUI app, allowing us to push and pop screens with ease, presenting information in a clear, hierarchical way for users. In this article I want to demonstrate the full range of ways you can use NavigationView in your apps, including simple t

                                          The Complete Guide to NavigationView in SwiftUI
                                        • 日本語リファレンス - 福井高専IT研究会OfficialWiki

                                          クラス リファレンス † UIAcceleration? UIAccelerometer? UIActionSheet UIActivityIndicatorView? UIAlertView UIApplication UIBarButtonItem? UIBarItem? UIButton UIColor UIControl UIDataPicker? UIDevice UIEvent UIFont UIImage UIImagePickerController? UIImageView UILabel UINavigationBar UINavigationController UINavigationItem? UIPageControl? UIPickerView UIProgressView? UIResponder UISc

                                          • iPhoneアプリをGameCenterのLeaderboard(ランキング)に対応させる方法 » SHINGOLOG

                                            iPhoneアプリをGameCenterのLeaderboard(ランキング)に対応させる方法 2012年1月6日 in Objective-c iOS4.1よりAppleが提供するGameCenterを組み込むことができるようになりました。このGameCenterのGameKitを使えば、スコアの送信や、ランキング確認などの機能を簡単にアプリ内に入れることができます。自分で作るとすればサーバーも必要で、ちょっと大変なのでありがたい機能です。ちょうど今、iPhoneアプリでパズルゲームを作っているので組み込むために調べたことのまとめです。 GameCenter(GameKit)で何が出来るか 詳しい説明はAppleの公式ドキュメントにも記載がありますが、出来ることはざっくりこんなこと。 認証 LeaderBoard オートマッチ ボイス LeaderBoardを使って、スコアの送信やラン

                                            • iOS5から使えるAppearanceを使って、Navigationbarをカスタマイズする | PLUS

                                              iOS5から、ナビゲーションバーやタブバーなどを一括設定で設定できるようになりました。このことで、背景の色や文字色、背景画像を使ったりとバリエーションを簡単に増やすことができるようになっています。 ナビゲーションバーの背景画像を設定 全てのビューに適用させたいので、AppDelegate.mに記述して一括設定します。起動直後に動くdidFinishLaunchingWithOptionsの中に設定を記述します。 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { UIImage *image = [UIImage imageNamed:@"back.png"]; [[UINavigationBar appearance]

                                              • 【Swift】Xcode9+iOS11でUINavigationBarが正しく表示できなくて困った話

                                                どうも。Reoです。 Xcode9にアップデートしてSwift4デビューもして早10日。 Swift3からSwift4にアップデートは殆ど何事もなくすんなりとアップデートしていて、Swift4の状態で10日くらい作業を進めていました。 そして作業をほとんど終え、後はiOS11にアップデートしてチェックしてから審査だそうというところまで来て、いざiOS11でビルドしてみて驚愕。 なんやこの白い隙間は!!!!! なんやこのスタンプはwwwwwwwwww 比較すると、Xcode9+iOS11にすると以下のようになってしまいました。 結論から言うとXcode9のバグらしいです。 スタンプがおかしくなったのはコードを付け足せばすぐに戻すことができたのですが、この高さがおかしいのだけはどうにもならなくてめちゃくちゃ困りました。 iOS11になってUINavigationBarがガラッと変わってしまった

                                                  【Swift】Xcode9+iOS11でUINavigationBarが正しく表示できなくて困った話
                                                • UIViewの階層構造を解析 | iPhoneアプリ練習帳

                                                  これはちょっとグレーな話題です。UIViewのsubViewメソッドを実行すると、そのView内に含まれているViewの一覧を取得できます。再帰的に実行すれば、全てのViewの構造がわかります。これを使うとフレームワークに含まれている特殊なViewの中もみごとに解析できちゃいます。 SubViewをすべて表示するためのメソッド 2番目のメソッドを呼び出すと、1番目のメソッドが実行され、階層構造がコンソールに表示されます。なお、20階層以上を超える場合はエラーが発生するのでご注意下さい。 -(void)dumpSubViews: (UIView*) view depth: (int) depth{ NSString * indent = [@"--------------------" substringToIndex:depth]; NSLog(@"%@%@", indent, view)

                                                  • 【iOS15.0】UINavigationBarが黒や透明になる問題の修正

                                                    はじめに iPhone13が出る狭間でアプリ開発をしていました。 開発をしている途中はなるべくリリースまでXcodeのバージョンを上げたくはなかったのですが、iOS15系の端末で実行すると、UINavigationBarの背景色のデザインがiOS14系と異なることに気がつきました。既に書かれた内容かもしれませんが、自分用のメモとして書き残しておきたいと思います。よろしくお願いします。 動作環境について Xcode Version 13.0 Swift 5.5 ちなみにXcode13.0だと以下の画像のように、StoryBoardで色を指定しても色が変わりません。 解決方法 もともとLarge Titleでのみに反映されていたScroll Edge Appearanceが全てのUINavaigationBarに適応されたのが原因の模様。 なので、iOS15もiOS14以下のバージョンもアプリ

                                                      【iOS15.0】UINavigationBarが黒や透明になる問題の修正
                                                    • Achieving bright, vivid colors for an iOS 7 translucent UINavigationBar

                                                      iOS 7.1 UPDATE: Looks like the workaround for modifying the alpha channel in the UINavigationBar has been ignored in this update. Right now, the best solution seems to be to just 'deal with it' and hope that whatever color you choose can render a translucent effect. I am still looking into ways of getting around this. iOS 7.0.3 UPDATE: The GitHub library we created has been updated to slightly wor

                                                        Achieving bright, vivid colors for an iOS 7 translucent UINavigationBar
                                                      • SplitView Application In iPad - EDUmobile.ORG

                                                        This is the SplitView application. Split View application is applicable only for the iPad devices. We will see here how to use Split View in the application. We are using here UISplitViewController for displaying two side by side view controller.  Left side view controller presents a list of item and right side view controller  presents details of the selected item. So let see how it will be worke

                                                          SplitView Application In iPad - EDUmobile.ORG
                                                        • iPhone Arrow Icons - Conor Mulligan

                                                          I couldn't find any decent high-resolution arrow icons on the web suitable for use in a UINavigationBar or UIToolbar, so I put my limited Photoshop skills to the test and created my own. There are eight icons in total: four directions in both standard and high-definition sizes. They're basically a recreation of the up and down arrows found in Mail.app and the forward and back icons found in Mobile

                                                          • UINavigationBar custom back button without title

                                                            How can I customize the navigation back button in iOS 7 and above without title? (i.e. with the arrow only) self.navigationItem.leftBarButtonItem = self.editButtonItem; I'm just wondering if they have any self.backButtonItem; OR something like this? self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemBACK target:self action:@selector(ba

                                                              UINavigationBar custom back button without title
                                                            • [Swift]UINavigationBarのタイトルの付け方

                                                              iOSとは、Apple製のスマートフォンであるiPhoneやタブレット端末のiPadに搭載しているオペレーションシステム(OS)です。その他にもiPod touch・Apple TVにも搭載されています。

                                                                [Swift]UINavigationBarのタイトルの付け方
                                                              • 【SwiftUI】iOS 16.1でUINavigationBar.appearance().tintColorの設定が反映されなくなっていることに気付いて対応した | DevelopersIO

                                                                iOS 16.1のシミュレータでアプリを触っていると、UINavigationBar.appearance().tintColorで設定しているはずのNavigationBarの戻るボタンの色がデフォルトの色になっていることに気付いたので対応しました。 環境 Xcode 14.1 コード import SwiftUI struct ContentView: View { init() { setupNavigationBarTintColor() } var body: some View { NavigationView { NavigationLink("Next") { NextView() .navigationBarTitleDisplayMode(.inline) } } } private func setupNavigationBarTintColor() { // Nav

                                                                  【SwiftUI】iOS 16.1でUINavigationBar.appearance().tintColorの設定が反映されなくなっていることに気付いて対応した | DevelopersIO
                                                                • UIViewControllerにナビゲーションバーとツールバーを追加 | ULTRA-PRISM Blog

                                                                  iPhone/iPad,Android,WordPress,PHPなど、日々の活動で面白かったことや気付いたことなどを書き込んでいきます。iOS5環境でUIViewControllerにナビゲーションバー(UINavigationBar)とツールバー(UIToolbar)をやっと追加できました。書籍とかネットで調べてもなかなか見つからず、試行錯誤してようやく実現できました。 ただ、ソースコードの美しさ的には、ちょっと難がありまして、もやっとした気分です。 一応以下にサンプルコードを紹介します。 // タイトルの設定 self.navigationItem.title = @"タイトル"; // タイトルの右側にボタンを作成 UIBarButtonItem* navRightItem = [[UIBarButtonItem alloc]initWithTitle:@"右側" style:UI

                                                                  • 【Swift4】UINavigationControllerのNavigationBarをカスタマイズしてみた。【高さ変更】

                                                                    【Swift4】UINavigationControllerのNavigationBarをカスタマイズしてみた。【高さ変更】 どうも。Reoです。Swift記事はお久しぶりですね。 今回は、UINavigationController内のナビゲーションバーをカスタマイズしてみました。 ずっとUINavigationBarを単独で使っていたのですが、iPhoneXが出て、単独だとセーフエリアを考慮するのがとても面倒なことを実感しました。なので最近はUINavigationControllerを使う方向に移行しています。 以前「【Swift】Xcode9+iOS11でUINavigationBarが正しく表示できなくて困った話」という記事を書いたのですが、これも結局iPhoneX対応ではなく、高さをちゃんと表示するための対応策でしかないんですよね。 これだと結局UINavigationBarを

                                                                      【Swift4】UINavigationControllerのNavigationBarをカスタマイズしてみた。【高さ変更】
                                                                    • ActionBarCompatでAndroidらしいタイトルバーを作る

                                                                      iPhoneだと、UINavigationBarを用いて、画面上部に画面タイトルとボタンを表示させます。同様のことは、Androidではどうやって実装するのでしょうか? FacebookとYammerの例 FacebookとYammerの例を見てみます。 iPhoneでは、バーの中央にタイトルを表示し、左右にボタンをひとつずつ置くことができます。左は「戻る」ボタンにも使います。 Androidでは、タイトルを中央でなく左に置くのが主流のようです。Androidでは「戻る」ボタンはハードウェアで実装されています。だから左が詰まってしまっても問題ないんですね。そして、右側にはボタンを複数個置きます。 Action Bar このバーはどうやって実装するのかというのを調べてみると、Action Barという名前が出てきました。 ActionBarにMenuを表示する しかしながら、Android3

                                                                        ActionBarCompatでAndroidらしいタイトルバーを作る
                                                                      • http://iphone-sandbox.googlecode.com/svn/wiki/UIKitSymbols.wiki

                                                                        #summary UIKit縺ョ縺ェ縺九r縺悶▲縺上j縺ゅ&縺」縺ヲ縺ソ縺溽オ先棡繧偵∪縺ィ繧√※縺ソ縺セ縺励◆ = PATH = * /Accessories/ * /Applications/ * /freeproductcodewizard? * /Library/Keyboard * /Library/TextInput * /maps * /SourceCache/UIKit/UIKit-629.1/UIAlert.m * /SourceCache/UIKit/UIKit-629.1/UIApplication.m * /SourceCache/UIKit/UIKit-629.1/UIDateLabel.m * /SourceCache/UIKit/UIKit-629.1/UIDatePicker.m * /SourceCache/UIKit/UIKit-629.1/UILabe

                                                                        • PrettyKit - Cocoa Controls

                                                                          PrettyKit is a small set of new widgets and UIKit subclasses such as UITableViewCell, UINavigationBar or UITabBar that gives you a deeper UIKit customization. You will be able to change their background color, add gradients, shadows, etc.

                                                                            PrettyKit - Cocoa Controls
                                                                          • iOS5 対応のあれこれ | Technologic

                                                                            今日はまちに待った iOS5 の正式リリースの日です! iPhone アプリデベロッパは各種端末やシミュレータで iOS5 正式版の対応を進めていると思いますが、僕が気づいた点をメモしておきます。Xcode 4.2 での作業になります。 メモ1:armv6 ではビルドできないの? Xcode 4.2 では上記のようになっていますが下記のように armv6 を追加してあげれば多分ビルドできます。 メモ2:なんか以下の部分( __dyld__dyld_start )で落ちるんですけど。 (参考:http://stackoverflow.com/questions/7668857/updated-xcode-for-ios5-app-wont-run-stops-at-dyld-dyld-start) おそらく、weak_library 使ってるのが原因だと思います。 -weak_librar

                                                                            • UIBarButtonItem & iOS 11

                                                                              Overview iOS 11 and Xcode 9 have officially been out for just over a month now and one interesting area that had some changes is the behaviour of UIBarButtonItems within UINavigationBar. Here are my findings so far … Changes In summary the highlights are: Tap areas of custom view UIBarButtonItems are now smaller The back button’s tap area is also smaller The back button label no longer automatical

                                                                                UIBarButtonItem & iOS 11
                                                                              • Don’t Miss These Navigation Bar Interactions in iOS8

                                                                                Posted on September 15th, 2014 Have you noticed how nicely the mobile Safari navigation bar condenses on scroll, and how the tab bar disappears? In iOS8, Apple has made this type of interaction (and more!) very easily available to us all – well, almost… While Apple demoed the condensing navigation bar at WWDC, they have since changed it to hiding the navigation instead, and the tab bar is not incl

                                                                                  Don’t Miss These Navigation Bar Interactions in iOS8
                                                                                • UINavigationBar | Apple Developer Documentation

                                                                                  Navigational controls that display in a bar along the top of the screen, usually in conjunction with a navigation controller.

                                                                                    UINavigationBar | Apple Developer Documentation