並び順

ブックマーク数

期間指定

  • から
  • まで

321 - 360 件 / 499件

新着順 人気順

UINavigationBarの検索結果321 - 360 件 / 499件

  • UINavigationBarのバックボタンを設定する

    UINavigationBar のバックボタンに画像を入れようと思ったら思ったよりも面倒だったのでメモ。 UIViewController にて self.navigationItem.backButtonItem でバックボタンにアクセスできる。self.navigationItem.backButtonItem.title = @"back back"のようにすれば、バック時の文字を変更できる。 これを画像にしたかったら self.navigationItem.backButtonItem.image = image とすれば画像を挿入できる。とても簡単。ここまでは。 このようにした場合、いつも使われている左が角張った戻るボタンの中に画像が表示される。ぼくがやりたいのはこのボタン全体を画像に変えたいのだ。 UIButton を使う UIBarButtonItemにはcustomView

    • UINavigationBarが隠れていてもUINavigationControllerの戻る遷移を有効にしたい時 | ロックとカレーと、あとフレブル

      iOS7において、UINavigationControllerを利用するが、UINavigationBar自体は隠しておきたい時、またbackBarButtonItemを隠しておきたい時、自動的にスワイプで前のViewControllerへ戻る機能は無効化されます。テーブルの編集中等、誤って前の画面に戻ってしまわないように配慮されているものですが、NavigationBarを使わずに独自で用意した戻るボタンにて遷移を行いたい場合には、余計なお世話になってしまいます。 これを回避するには、スワイプで戻る動作を行いたいViewControllerにUIGestureRecognizerDelegateを継承し、以下のような実装で可能です。 - (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; // 別の箇所

      • 2013-10-15

        Android だと Eclipse でプロジェクトを作成する際に「Navigation Type」で「Tabs + Swipe」を選択すれば自動的にタブをスワイプで移動できるアプリケーションができあがる。 で、このタブ間をスワイプで移動するのが思いのほか気に入ったので iOS 7でもやってみた。 もちろん、Xcode のプロジェクト作成時に「Tabbed Application」を選んでもスワイプ対応はしてくれないので、そこの部分はネットで見つけたライブラリ「VCTransitionsLibrary」にお世話になってみた。 拙作「ねむスタ」に「VCTransitionsLibrary」を試しに組み込んでみた様子はこんな感じ。 以下、VCTransitionsLibrary の使い方のメモ。 GitHub のページはここ。 ColinEberhardt / VCTransitionsLib

          2013-10-15
        • ナビゲーションバーの背景を透明にする方法 【iOS】 - あぷすた

          こんにちは。あっきぃいです。 気づいたら春になっていました。 あっきぃはまだまだまだま冬です。 でもテンションと頭の中は年中夏です。よろしくお願いします。 さてUINavigationBarの背景を透明にしたいです。 何故なら透明にすればなんかいいことが起きそうだからです。 こちらの記事が参考になりました。 → ios - Make UINavigationBar transparent - Stack Overflow こう書きます。 [self.navigationController.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault]; self.navigationController.navigationBar.shadowImage = [UIImage new];

            ナビゲーションバーの背景を透明にする方法 【iOS】 - あぷすた
          • iOS 13でのNavigationBarのカスタマイズ方法

            NavigationBarをカスタマイズする方法がiOS13から変わったそうです。 ご丁寧にAppleからサンプルアプリが提供されているのでそれを確認していけばカスタマイズできそうです。 今回の記事ではAppleのサンプルアプリをみつつ、NavigationBarのカスタマイズ方法を解説します。 実行環境 Xcode 11.4.1 Customizing Your App’s Navigation Bar AppleはCustomizing Your App’s Navigation Barという記事を公開し、NavigationBarのカスタマイズの実装方法を解説しています。 具体的にはNavigationBarの外見を変える方法や独自Viewを配置する方法、NavigationItemを画像に変更する方法、戻るボタンをカスタマイズする方法などです。 NavigationBarのカスタマ

              iOS 13でのNavigationBarのカスタマイズ方法
            • 頭と尻尾はくれてやる! ナビゲーションバーの下側の影を消したい

              頭と尻尾はくれてやる! ナビゲーションバーのテキストの影をなくす ↑この続きね。前記事でナビゲーションバーの文字に付いてる影を消すのはできたんだけど、、、 待てよ。 ナビゲーションバーの下にうっすら影が付いてる。 そう言えば以前はなかったのにいつだったか忘れたけどiOSのバージョンが上がった時に付いたんだよね。 この影を消そうとnavigationBarのlayer.shadowColorとかいじってみたんだけどうまくいかなくてさ。 どうするのかなと思って調べてみたところこんな記事を見つけたよ。 iphone - How do I disable the navigation bar shadow in iOS 6 for navigation bars with custom background images? - Stack Overflow [[UINavigationBar ap

              • Titanium mobileでiPhoneのNavigationBarを利用する。

                Titanium mobileで基本的な画面遷移を試そうと思い、画面遷移のイベントを仕込むボタンをどこに配置したらよい?となりました。 前回のエントリーの「Titanium mobileでAndroidのActionBarを利用する。」ではAndroidをターゲットとしていました。 今回はiPhoneを対象としたエントリーとなります。 本エントリーは以下の内容で構成されます。 iPhoneレベルでの利用コンポーネント Titanium mobileでの利用コンポーネント iPhoneを利用して思考錯誤 なお、Titanium Mobileのインストールや各種設定については お使いの環境がWindowsの場合は「Titanium Mobile入門【導入編】」 Macの場合は「Titanium Mobile入門【導入編 on Mac】」 を参照ください。 1 iPhoneレベルでの利用コンポー

                • 【iPhoneアプリ開発】UINavigationBarに複数のUIBarButtonItemを配置する方法 - 拡張現実ライフ

                  記事内に広告を含む場合があります。記事内で紹介する商品を購入することで、当サイトに売り上げの一部が還元されることがあります。 UINavigationBarの左側や右側に、複数のUIBarButtonItemを配置する方法を解説したいと思います! 右側に複数のUIBarButtonItemを配置する方法 まずは右側に配置する方法から。やり方は簡単。複数のUIBarButtonItemオブジェクトを配列に入れて、self.navigationItem.rightBarButtonItemsにセットするだけです。以下、サンプルコード。 - (void)viewDidLoad { [super viewDidLoad]; UIBarButtonItem *itemR1 = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButt

                  • iOS 10.0 Release Notes

                    Contents: Introduction Bug Reporting Notes and Known Issues Introduction iOS 10 SDK provides support for developing iOS apps. It’s packaged with a complete set of Xcode tools, compilers, and frameworks for creating apps for iOS and OS X. These tools include the Xcode IDE and the Instruments analysis tool, among many others. With this software you can develop apps for iPhone, iPad, or iPod touch ru

                    • ナビゲーションバーの戻るボタン長押しで一番上の階層に戻るようにしてみる - だらだら書き連ねる予定のブログ(仮)

                      TweetBotだとつぶやきから他の人のプロフィール見てそのつぶやきみてっていうようにどんどん深い階層に降りていった時、左上の戻るボタンを長押しすると一番上の階層に戻ることができる。 普通のナビゲーションバーではそんなこと出来ないのでちょっとやってみた。 まずUINavigationControllerを継承してUILongTapGestureRecognizerをnavigationBarにセットする。 - (void)viewDidLoad { [super viewDidLoad]; UILongPressGestureRecognizer *longTap = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(backToRoot:)]; longTap.delegate = sel

                        ナビゲーションバーの戻るボタン長押しで一番上の階層に戻るようにしてみる - だらだら書き連ねる予定のブログ(仮)
                      • UINavigationBar multi-line title

                        Is there a straightforward way of overriding the titleView of the current navigation bar item in a navigation bar within a navigation controller? I've tried creating a new UIView and replacing the titleView property of topView with my own UIVIew with no success. Basically, I want a multi-line title for the navigation bar title. Any suggestions?

                          UINavigationBar multi-line title
                        • iOSアプリ開発日記 百折不撓 » UIViewControllerにナビゲーションバーとツールバーを追加 - ULTRA-PRISM(ウルトラプリズム)

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

                          • フタなしカンヅメ

                            Google画像検索のような類似画像を検索する方法を調べてみた。 ぱっと思いつくのは、色や形状などの特徴量を比較し、近似しているものを調べていく方法だ。 この手の情報やライブラリは、けっこう出回っているので、一番お手軽にできそうだ。 他のアプローチとしては、特徴量が近似していないものを探しいくことで、類似性を判定する方法もあるそうだ。 画像同士をつきあわせて類似性を判定するのではなく、彼らは問題をまったく別の角度から捉えた。彼らの方法では、ターゲットの画像(A)を大量のランダムな画像と比較して、それらと当の画像との、もっとも著しい違いを記録する(Ra)。そして、もう一つのターゲット画像(B)に対しても同じ記録を作成する(Rb)。この、RaとRbがほぼ同じなら、画像AとBは類似性が高いだろう。 重要なのは'類似'ではなく'違い'だ–まったく新しい着想に基づく高精度の画像検索アルゴリズム |

                              フタなしカンヅメ
                            • Xcode5でAuto Layoutを使おう - Takahiro Octopress Blog

                              Auto Layoutで『iOS6・iOS7』と『3.5-inch・4-inch』対応 さて、これまでiOS6/7 deltasを利用した方法や全てコードで書く方法について説明してきました。これとは別に本日はAuto Layoutを利用した方法について説明します。 先にこれらの方法の違いについて紹介します。 ・iOS6/7 deltasを利用する方法 XIBやStoryboardを利用した上でiOS5以前から対応する場合 ・全てコードで書く方法 XIBやStoryboardなどのGUIを利用せずに、全OS・全ディスプレイに対応する場合 ・Auto Layoutを利用する方法 XIBやStoryboardを利用した上でiOS6以降から対応する場合 求められている仕様や開発者の技量、プロジェクトの運用から最適な方法を選択する必要があります。 とは言え、個人的には全てコードで書く方法が最も自由が

                              • Change the alpha value of the navigation bar

                                As I support Colin's answer, I want to give you an additional hint to customize the appearance of an UINavigationBar including the alpha. The trick is to use UIAppearance for your NavigationBar. This enables you to assign an UIImage to your NavigationBar's backgroundImage. You can generate these UIImages programmatically and use for that UIColors and set the colors' alpha properties as you want. I

                                  Change the alpha value of the navigation bar
                                • XcodeでUIPageControlを追加する方法【初心者向け】

                                  XcodeのUIパーツ【UIPageControl】を追加する方法を初心者向けに解説した記事です。UIPageControlは、複数のページがある場合に、ユーザーに総ページ数と現在表示中のページを知らせるために使われます。 テックアカデミーマガジンは受講者数No.1のプログラミングスクール「テックアカデミー」が運営。初心者向けにプロが解説した記事を公開中。現役エンジニアの方はこちらをご覧ください。 ※ アンケートモニター提供元:GMOリサーチ株式会社 調査期間:2021年8月12日~8月16日  調査対象:2020年8月以降にプログラミングスクールを受講した18~80歳の男女1,000名  調査手法:インターネット調査 iPhoneアプリ開発では、アプリの画面を作るのに便利なUIパーツが多数用意されています。 今回は、XcodeでUIPageControl(ページコントロール)を追加する方

                                    XcodeでUIPageControlを追加する方法【初心者向け】
                                  • Second Flush:iPhone SDKプログラミング大全

                                    iPhone SDKプログラミング大全 May 08, 2010 『iPhone SDKプログラミング大全』まとめ 唐突ですが、2冊目として読み進めてきた『iPhone SDKプログラミング大全』については今回のまとめをもって終了します。 まだ残り100ページ余あるのですが、以降の内容はクラスの概要、プロパティやメソッドの紹介、当該部分のみのサンプルコードの一部というもので、これまでのような単体のアプリケーションという形での紹介をされていないため、私の実力的に内容を補完してご紹介するのは無理と判断しました。 残りは困った時にリファレンスとして使うことになると思います。 『『iPhone SDKの教科書』まとめ』同様、本書と当サイトの記事の関係は以下の通りです。 第1章 iPhone SDKで開発を始める前に1-1 iPhone SDKとは『iPhone SDKプログラミング大全』を始めてみ

                                    • http://www.codedisqus.com/0zJjgXqPje/uisearchbar-in-place-of-uinavigationcontroller-uinavigationbar.html

                                      • アプリ全体を Dynamic Type に対応させる - ObjecTips

                                        アプリを Dynamic Type に対応させようと思って実装してみた。 IBでフォント指定可能なUI まずIB上で設置できるUIをいくつか配置する。 UILabel UIButton UITextField UITextView はIB上でフォントの設定ができるので Dynamic Type に対応したフォントを設定する。 通常のテキストサイズの時は以下の様になる。 次に設定.app の 画面表示と明るさ > 文字サイズを変更 もしくは 一般 > アクセシビリティ > より大きな文字 で文字サイズを変更する。 シミュレータの場合は 一般 >アクセシビリティ > Larger Text から設定できる。 文字サイズを変更すると以下の様になる。 IBでフォント指定ができないUI UINavigationBar UIBarButtonItem UITabBarItem UISearchBar

                                          アプリ全体を Dynamic Type に対応させる - ObjecTips
                                        • How to trap on UIViewAlertForUnsatisfiableConstraints?

                                          This post helped me A LOT! I added UIViewAlertForUnsatisfiableConstraints symbolic breakpoint with suggested action: Obj-C project po [[UIWindow keyWindow] _autolayoutTrace] Swift project expr -l objc++ -O -- [[UIWindow keyWindow] _autolayoutTrace] With this hint, the log became more detailed, and It was easier for me identify which view had the constraint broken. UIWindow:0x7f88a8e4a4a0 | UILayou

                                            How to trap on UIViewAlertForUnsatisfiableConstraints?
                                          • SwiftierSwift | Swift3 Extended Libraries

                                            page desc goes hereTo integrate SwifterSwift into your Xcode project using CocoaPods, specify it in your Podfile : source 'https://github.com/CocoaPods/Specs.git' platform :ios , '8.0' use_frameworks! target '<Your Target Name>' do pod 'SwifterSwift' , :git => 'https://github.com/omaralbeik/SwifterSwift.git' end Manually Add the extensions folder to your Xcode project to use all extensions, or a s

                                            • Objective-C [ObjC part:3];

                                              1 :デフォルトの名無しさん:2007/08/08(水) 12:18:31 Objective-C(オブジェクティブ シー)はプログラミング言語の一種。C言語をベースにSmalltalk型のオブジェクト指向機能を持たせた上位互換言語。 (Wikipedia:http://ja.wikipedia.org/wiki/Objective-C より) 前スレ http://pc11.2ch.net/test/read.cgi/tech/1106983092/ 前々スレ http://pc5.2ch.net/tech/kako/990/990574267.html 2 :関連スレ:2007/08/08(水) 12:33:50 *** プログラム技術板 *** 【マック】Macintoshプログラミング質問箱 http://pc11.2ch.net/test/read.cgi/tech/111305

                                              • GitHub - mpociot/TiMWKProgressIndicator: A minimal progress indicator for iOS with status update support. Displays above UINavigationBar and below the Status Bar.

                                                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 - mpociot/TiMWKProgressIndicator: A minimal progress indicator for iOS with status update support. Displays above UINavigationBar and below the Status Bar.
                                                • GitHub - luugiathuy/GTScrollNavigationBar: A scrollable UINavigationBar that follows a UIScrollView

                                                  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 - luugiathuy/GTScrollNavigationBar: A scrollable UINavigationBar that follows a UIScrollView
                                                  • Xcode 13 + iOS 15 에서 지정한 Navigation Bar의 색이 나오지 않을 때 해결방법 | DevelopersIO

                                                    안녕하세요! 클래스메소드 CX사업본부 모바일사업부의 정하은입니다? 지난 달은 갑작스레 일이 쌓이는 바람에 블로그 쓰는 걸 쉬었는데 이번 달에는 대신 지난 달에 못 쓴 이 글 포함 2개를 올리기로 정했기 때문에 뒤늦게 나마 올립니다. (Xcode13으로 업데이트 된 지 좀 지났지만 아직 Xcode 14 버전이 안나왔으니 세이프인 걸로 합리화..ㅎㅎ) 이번 글에서는 Xcode 13 + iOS 15에서 Navigation Bar의 tintColor가 적용되지 않을 때 해결하는 방법에 대해서 다루어보도록 하겠습니다. Navigation Bar의 색이 사라졌다? 위 제목의 상황은 제가 참여하는 프로젝트에서 Xcode 환경을 13 버전으로 옮기는 과정에서 앱에 문제가 없는지 확인을 하려고 앱을 실행했을 때 발견한 문제

                                                      Xcode 13 + iOS 15 에서 지정한 Navigation Bar의 색이 나오지 않을 때 해결방법 | DevelopersIO
                                                    • iPhoneアプリ開発と留学 : ナビゲーションバーのボタンが押されたときに呼ばれるdelegateを設定する

                                                      2010年06月14日18:08 カテゴリiPhone開発UINavigationBar ナビゲーションバーのボタンが押されたときに呼ばれるdelegateを設定する ナビゲーションバーにあるボタン(例えば画像の左上のボタン)はナビゲーションの階層を行ったり来たり(いわゆるViewのpopとpush)します。、そのボタンが押されてViewが入れ替わるときに途中に処理を入れたいときがあります。そんなときは「UINavigationBar」の「delegate」プロパティに「UINavigationBarDelegate」を設定して以下のメソッドを「UINavigationBarDelegate」に実装して下さい。 - (BOOL)navigationBar:(UINavigationBar *)navigationBar shouldPopItem:(UINavigationItem *)i

                                                      • React Native In Production

                                                        We’ve been using React Native in production for a few months. You might be considering React Native for your iOS app, or just casually wondering why we would do such a crazy thing, so here’s the story. The BLUF is that React Native helped us ship crucial features in less time and immediately increased the percentage of our team that contributes iOS code. It’s working out, and we’re only going to i

                                                          React Native In Production
                                                        • 【iOS5】第1回開発日誌 標準UI一覧と各機能紹介!! | Lifebook -Delivery-

                                                          iOS開発関連のblogを頼まれたので、今週から定期配信開始!!担当のKodamaがお送りします。 とはいえ、文才の無い僕です、無理にまとめず、実際にiPhone・iPadアプリで実装した内容を備忘録的に配信していきます。 もちろん、開発初心者向けでwww 第1回は、アプリ開 ...iOS開発関連のblogを頼まれたので、今週から定期配信開始!!担当のKodamaがお送りします。 とはいえ、文才の無い僕です、無理にまとめず、実際にiPhone・iPadアプリで実装した内容を備忘録的に配信していきます。 もちろん、開発初心者向けでwww 第1回は、アプリ開発をこれから勉強される方向けのiOS5標準UIKitの一覧とおおよその概要を解説(アプリ営業者向けの資料を頼まれたのでついでに配信!!) 開発者からすれば、当たり前のように使用している機能ですが、全体を把握しようとすると開発本をひっくり

                                                          • RubyMotion - Support - Training

                                                            Are you a Ruby developer interested in iOS development but needing a bit of help to get started? Look no more! We offer a full 5-day class that will teach you everything you need to know about iOS and RubyMotion, from the very basic concepts to advanced topics. Experience with iOS is absolutely not required. At the end of the training you should be able to start writing full-fledged apps for iPhon

                                                            • GitHub - alexcorre/ACScrollNavigationBar: Scrollable UINavigationBar written in Swift

                                                              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 - alexcorre/ACScrollNavigationBar: Scrollable UINavigationBar written in Swift
                                                              • How to remove gradient / drop shadow for UITabbaritem in iOS 5

                                                                with iOS 5, there is UI Appearance, is it possible to remove the gradient easy way ? i do this to customised my tabbar, what can be done to remove the gradient ? thanks for reading -(void)UIAppearances { //set the background of tab bar UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"navbar_bgrd.png"]]; if ([[[UIDevice currentDevice] systemVersion] floatValue] > 4.

                                                                  How to remove gradient / drop shadow for UITabbaritem in iOS 5
                                                                • UIBarButtonItemで隠されたボタンを使用する

                                                                  UIBarButtonItemで隠されたボタンを使用するSunday, February 14, 2016 UIBarButtonItemには、typeを指定して、標準で用意されている様々なアイコンを使用できます。 (ここに一覧が掲載されています。) しかし、 < > ∧ ∨や、ゴミ箱アイコンといったものが用意されていません。 これを毎回画像で用意するのはしんどいし、"< >"と文字で生成するとなんかダサいし。。 ただ、標準アプリであるSafariとか、UINavigationBarの戻るボタン等、標準で< >を使っているのでなんとかして使えるなら使いたい。 それを解決してみます。 enum UIBarButtonHiddenItem: Int { case Previous = 101 case Next = 102 case Up = 103 case Down = 104 case

                                                                    UIBarButtonItemで隠されたボタンを使用する
                                                                  • UITabBarとUINavigationBarをスクロール時にサクッと隠す - Qiita

                                                                    // UIScrollViewDelegate/UITableViewDelegateを持ったController内に実装すると動作します - (void)viewWillDisappear:(BOOL)animated { // 画面から離脱するときは、上下のバーを強制的に再表示する // 実装しない場合は、ページを遷移した後もバーが隠れたままになります // // 第一引数に対象のScrollView系のインスタンスを渡してください // [self hidesBarsWithScrollView:_tableView hidden:NO hiddenTop:YES hiddenBottom:YES]; [super viewWillDisappear:animated]; } - (void)scrollViewWillEndDragging:(UIScrollView *)scro

                                                                      UITabBarとUINavigationBarをスクロール時にサクッと隠す - Qiita
                                                                    • http://smartphonesoftwaresolutions.com/customizing-uinavigationbar-and-uibarbuttonitem-in-ios/

                                                                        http://smartphonesoftwaresolutions.com/customizing-uinavigationbar-and-uibarbuttonitem-in-ios/
                                                                      • Don't worry - here are fixes devs need for iOS 11 Webview Viewport

                                                                        By Darryl Pogue iOS 11 brings some new, perhaps unintuitive, behaviour around the status bar area which will be particularly important for developers using tools like Apache Cordova or Ionic. In particular, this change in behaviour affects any web-based apps that use fixed position header bars when they are built for iOS 11. This post helps you understand the Webview Viewport in iOS 11. Note: Exis

                                                                          Don't worry - here are fixes devs need for iOS 11 Webview Viewport
                                                                        • AutolayoutでiOSのアニメーションを実装する時のメモ - adragoonaの日記

                                                                          iOSでアニメーションの実装をする時の注意点メモ。 AutoLayoutの変更の反映は、UIViewのlayoutIfNeededメソッドを使う。 UIViewに対するアニメーションは、 + (void)animateWithDuration:(NSTimeInterval)duration delay:(NSTimeInterval)delay options:(UIViewAnimationOptions)options animations:(void (^)(void))animations completion:(void (^)(BOOL finished))completion 使用する。例えば、次のようにする。 [UIView animateWithDuration:0.25f //Animationの時間 animations:^{ //Autolayoutの変更 sel

                                                                            AutolayoutでiOSのアニメーションを実装する時のメモ - adragoonaの日記
                                                                          • iOS 7.0

                                                                            iOS 7.0iOS 7 is a major update with compelling features for developers to incorporate into their apps. The user interface has been completely redesigned. In addition, iOS 7 introduces a new animation system for creating 2D and 2.5D games. Multitasking enhancements, peer-to-peer connectivity, and many other important features make iOS 7 the most significant release since the first iPhone SDK. This

                                                                            • Large Titleを使いこなす3つの要点 - Qiita

                                                                              概要 iphoneアプリにおけるモダンなUIを実現するための方法として、いかにApple公式アプリのUIをパクるかは重要です。 iOS11にてAppleの公式UIとしてLargeTitleというものが追加されました。 UINavigationBarが設定されたスクロールビューにてタイトルの位置と大きさをアニメーションでいい感じにしてくれます。 「ミュージック」におけるLargeTitle しかし、LargeTitleは周囲のUIパーツを正しく扱わないと残念な感じになってしまいます。 今回は実装に取り入れる上で、つまづいた3つの点と解決策をまとめました。 記事の前提 iOS11以降 Master-Detail型の遷移(LargeTitleが設定されたScrollVIew→詳細ビュー)を伴うアプリ LargeTitleの実装 LargeTitleは簡単に以下の設定で有効にすることができます.

                                                                                Large Titleを使いこなす3つの要点 - Qiita
                                                                              • UINavigationBarのbackボタンが表示されなくてお嘆きのあなたへ - 気が向いたら

                                                                                UINavigationBar で pushViewController メソッドで次の画面へ遷移したのに、左上の戻るボタンが表示されなくてお嘆きになるケースってあると思います。 たいていの場合、タイトルに文字列が無い場合にこの状況に陥っていると考えられるのですが、例えばNavigationBarにカスタム画像等を使用している場合等はタイトル表示したくない。 その場合以下の方法です。 UIBarButtonItem *backButton = [[[UIBarButtonItem alloc] init] autorelease]; backButton.title = @"戻る"; self.navigationItem.backBarButtonItem = backButton; InterfaceBuilder での設定は、Back Button プロパティに入力するだけ。 ※Xc

                                                                                  UINavigationBarのbackボタンが表示されなくてお嘆きのあなたへ - 気が向いたら
                                                                                • iPhone Snippets

                                                                                  Best App Development Company in IndiaiPhone mobile app Development Company companyapp companyandroid posted 2 weeks ago by wiinnova Hire iPhone App Developer - Hire iOS App Developers IndiaiPhone app iphone developer ios posted on August 19, 2019 by 4lifeinnovations Why Invest in iOS App Development than AndroidiPhone app Development ios posted on June 18, 2019 by dineshdhiman Your Recommendation