並び順

ブックマーク数

期間指定

  • から
  • まで

161 - 200 件 / 293件

新着順 人気順

UINavigationBarの検索結果161 - 200 件 / 293件

  • What properties can I set via an UIAppearance proxy?

    Properties that can be set via UIAppearance are tagged with UI_APPEARANCE_SELECTOR in the corresponding header file. To generate a list of properties tagged with UI_APPEARANCE_SELECTOR, you can use the following unix commands in a terminal: cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer‌​/SDKs/iPhoneOS5.1.sdk/System/Library/Frameworks/UIKit.framework/Headers gr

      What properties can I set via an UIAppearance proxy?
    • Xcode5で画面にナビゲーションバーを配置して利用する。

      今回は「ナビゲーションバー」をiPhoneアプリの画面に配置して利用する方法を記載させていただきます。 どこかのエントリーでも同じ様な事を記載いたしまいたが、本エントリーでも「ナビゲーションコントローラ」を利用しない、 単独での利用を前提としており、純粋に、「ナビゲーションバー」で出来ることにフォーカスしてます。 「ナビゲーションコントローラ」につきましては、近々エントリーを作成する予定です。 利用しているXcodeはXcode5(5.1)となります。 本エントリーの内容は以下の通りです。 ナビゲーションバーの概要 コンポーネントとしてのナビゲーションバー ナビゲーションバーの実際の利用例 1 ナビゲーションバーの概要 画面上部に配置され、タイトルや、画面遷移イベントを発火させるためのボタンが配置されます。 バーの高さは88pxです。 なお、標準の部品を利用せず、独自にナビゲーションバー相

      • iPhone Development 101

        iPhone Device & Screen Sizes Default (Launch) Image Sizes for iPhone & iPad View Frames and Bounds The Status Bar - hiding; setting the color UIAlertView - pop-up alert messages UINavigationController & UINavigationBar UITableView UIImage - displaying images UIView - animating views

        • Creating a left-arrow button (like UINavigationBar's "back" style) on a UIToolbar

          I'd love to create a "back" left-arrow-bezel button in a UIToolbar. As far as I can tell, the only way to get one of these is to leave UINavigationController at default settings and it uses one for the left bar item. But there's no way I can find to create one as a UIBarButtonItem, so I can't make one in a standard UIToolbar, even though they're very similar to UINavigationBars. I could manually c

            Creating a left-arrow button (like UINavigationBar's "back" style) on a UIToolbar
          • UINavigationBar « iPhoneメモ

            iPhone開発のメモです。initWithCustomViewとベースのVIewとしてUIButtonを使用するのがみそ。 UIButton *imageButton; imageButton = [[[UIButton alloc] initWithFrame: CGRectMake(0, 0, 30, 40)] autorelease]; imageButton.contentMode = UIViewContentModeScaleToFill; [imageButton addTarget:self action:@selector(showImage:) forControlEvents:(UIControlEventTouchDown)]; [imageButton setBackgroundImage: image forState:UIControlStateNormal

            • UIScrollViewとUINavigationBarがずれた時の対応 - Qiita

              現象 UINavigationBarがあるViewControllerにScrollViewを全画面で置いて、 UIコンポーネントを置いていきました。 しかしStoryBoadの表示位置とビルドした時のiPhoneの画面がどうしてもずれる。 その解決方法を調べました。 UIコンポーネントの階層は View(rootView) ScrollView View(コンテンツビュー) IBコンポーネント(実際に配置するコンポーネント) (20150719日追記) AutoLayoutの設定はVisual Format Languageで表すと H:|-(-16)-[ScrollView]-(-16)| ScrollViewの水平位置はrootViewの左右の端(左右は16ポイントのマージンがあるので-16を指定) V:|-[ScrollView]-| ScrollViewの垂直位置はrootVie

                UIScrollViewとUINavigationBarがずれた時の対応 - Qiita
              • カメラロールのようにバーを非表示にする | Studio Amuate

                カメラロールでは画面をタップすると、ステータスバー・ナビゲーションバー・ツールバーの各種バーがじわりと透明になりつつ表示・非表示が切り替わります。それっぽく見せる方法。 - (id)init { if (self = [super init]) { //self.viewはデフォルトでは透明なので、タッチイベントに反応しないため self.view.backgroundColor = [UIColor blackColor]; } return self; } - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; //ステータスバー・ナビゲーションバー・ツールバーの表示とスタイルの設定 [[UIApplication sharedApplication] setStatusBarHidden:NO

                • UITableViewCellで標準メールアプリのような、未読バッジを使う方法 » SHINGOLOG

                  UITableViewCellで標準メールアプリのような、未読バッジを使う方法 2011年8月30日 in Objective-c, UITableView UITableViewでiPhone標準メールアプリのような未読のバッジを表示させる方法です。 基本的には、テーブルでバッジを表示させるメソッドは用意されていませんので、自作することになります。が、ありがたいことに、既にオープンソースで公開されている「TDBadgedCell」があったので、これを組み込んでみます。 TDBadgedCell ダウンロードしたソースのうち TDBadgedCell.h TDBadgedCell.m がバッジを表示するプログラムファイルです。 この2つを自分のプロジェクトに追加し、実装ファイル内でTDBadgedCell.hをインポート。 そして、cellForRowAtIndexPath内で st

                  • UINavigationBarの背景を画像に – ssonLogger

                    UINavigationBarの背景をIB使わないで変更する方法。drawRectをOverrideする。元ネタはここ @implementation UINavigationBar (CustomImage) - (void)drawRect:(CGRect)rect { UIImage *image = [UIImage imageNamed: @"background.png"]; [image drawInRect:CGRectMake(0, 0, self.frame.size.width, self.frame.size.height)]; } @end とてもシンプルで、前の方法だとViewをpopするとItemが消えたりしたけどそれも解決。 Tag(s) iPhone

                    • NavigationBarとToolBarを上下に移動させつつ消したり出したり - Qiita

                      「押したら上と下にひゅっと逃げて、押したらそこからひゅっと出てくるようにして」 「あー、直ぐ出来ます。多分」 「よろしく」 ということで - (void) showNavigationToolBar { UINavigationBar *navBar = self.navigationController.navigationBar; float animationDuration = 0.1; [self.navigationController setNavigationBarHidden:NO animated:NO]; navBar.frame = CGRectMake(navBar.frame.origin.x, -navBar.frame.size.height, navBar.frame.size.width, navBar.frame.size.height); [UIVi

                        NavigationBarとToolBarを上下に移動させつつ消したり出したり - Qiita
                      • RU AppsiPad画像サイズ一覧 メモ

                        cool and extremely fun game maker for iPhone, iPad and Android. 2011年8月11日 This article is written by Uka. 【ポートレートモード】 画面サイズ   W768 H1024 ステータスバー W768 H20 UINavigationBar W768 H44 UITabBar W768 H48 タブバーのカスタムアイコンサイズは 日本版のヒューマンインタ−フェイスガイドラインでは【30×30ピクセル】 海外版では【48×32ピクセル以下】となっているみたいです。 SM診断で使ったカスタムアイコンのサイズは30×30ピクセルで作りました。 Keyboard W768 H264 【ランドスケープモード】 画面サイズ  W1024 H768 ステータスバー W1024 H20 UINavigati

                        • #potatotips で隅々までタップできるUINavigationBarの話をしました

                          potatotipsというのはクックパッドさんが開催しているiOS/Android開発者のtips共有会です。 普段は社内のメンバーで定期的に行っているそうなんですが、今回は社外の開発者も含めて開催でした。 持ち時間は1人あたり5分と短かったので、すぐに活用できそうなtipsが多かったように思います。 話したこと iOS 7になってからUINavigationBarのcustomViewが中央寄りになってしまい、 バーの両サイドに配置されたカスタムボタンが押しにくいという問題が起きました。 これだけを理由にUINavigationBarを使うのを辞めるのはもったいないので、 customViewのフレームに影響されずに隅々までタップできるUINavigationBarを実現する方法を考えました。 実装のアイディアは結構単純で、customViewのフレーム外であってもタッチイベントの位置に

                          • "Pull-to-refresh": an Anti UI Pattern on Android - Cyril Mottier

                            “It’s the little details that are vital. Little things make big things happen.” – John Wooden Twitter G+ RSS Note: This article has been written prior to the recent article on Techcrunch which states “pull-to-refresh” has been patented by Twitter. I agree with most of this article when it comes to iOS. My only disagreement is I don’t think this patent is the reason why Apple didn’t use it in their

                            • How to Edit Empty Spaces of Left, Right UIBarButtonItem in UINavigationBar [iOS 7]

                              I was using iOS 6.1 earlier, but now I have moved to iOS 7. Along with other problems, I have observed that in my navigation bar, the left space of left bar button item and right empty space of the right button bar item are quite more in IOS 7 than in iOS 6. I need to know is there a way I can reduce empty spaces of left, right bar button items in navigation bar??

                                How to Edit Empty Spaces of Left, Right UIBarButtonItem in UINavigationBar [iOS 7]
                              • [Swift] ナビゲーションバーのデザインを変更する - YoheiM .NET

                                こんにちは、久しぶりに古いiPhoneアプリをSwiftで改修中の@yoheiMuneです。 今日はiOSアプリでデザイン変更を最も行う箇所の1つである、UINavigationBar周りのデザイン変更方法をブログに残したいと思います。 目次 今回変更するデザイン(3点) この記事では、以下3点の色を変更する方法を記載しています。 アプリケーション全体でナビゲーションのデザインを変更する アプリケーション全体でデザインを変更する場合には、以下のように行います。 // AppDelegate.swiftなどで、アプリ起動時に処理を行う // 色 let greenColor = UIColor(red: 24.0/255.0, green: 225.0/255.0, blue: 144.0/255.0, alpha:1) let whiteColor = UIColor(red: 236.0

                                  [Swift] ナビゲーションバーのデザインを変更する - YoheiM .NET
                                • iPhone・iPad用アプリ「Showrtpathブラウザ」の開発で参考にした記事の全て - showrtpath - iPhone,iPadウェブブラウザアプリ開発ブログ

                                  2013-12-30 iPhone・iPad用アプリ「Showrtpathブラウザ」の開発で参考にした記事の全て iOS開発 Showrtpathブラウザの紹介 iOS開発の記事のまとめ こんにちはnasustです。明日で2013年の最後ですね。 今回は、iPhone/iPad用アプリ「Showrtphatブラウザ」の開発時に調べたウェブ上の資料を公開したいと思います。 ブラウザを開発する場合、参考になるかと思います。 ソースコード資料 開発のコーディングで困ったときに発見した資料を紹介します。 How to Edit Empty Spaces of Left, Right UIBarButtonItem in UINavigationBar in iOS 7 http://stackoverflow.com/questions/18914812/how-to-edit-empty-spa

                                    iPhone・iPad用アプリ「Showrtpathブラウザ」の開発で参考にした記事の全て - showrtpath - iPhone,iPadウェブブラウザアプリ開発ブログ
                                  • SwiftUIをクラシルに導入した話 - dely Tech Blog

                                    SwiftUIをクラシルに導入した話 こんにちは。これはdely アドベントカレンダー10日目の記事となります。 今年も残りあと少しとなりました。クラシル開発部でiOSエンジニアをしている@yochidrosです。 前回はharry(@gappy50)さんのクラシルでのSnowflakeデータパイプラインのお話&活用Tips でした。 日頃redashを利用して分析をしている中でより便利になっていっているなと感じました!tipsも今後使っていこうと思います! 今日はSwiftUIをクラシルに導入した話を書いていきたいと思います。 背景 2019年に発表されたSwiftUIですが、iOSのバージョンが13.0以降でないと利用できない等制約があったためなかなかクラシルも導入できずにいました。 しかし、今年のクラシル自体のiOSのサポートバージョンを13.2に引き上げたことによってSwiftUI

                                      SwiftUIをクラシルに導入した話 - dely Tech Blog
                                    • iOS 5 : Custom UIAppearance Tutorial - Scott Sherwood

                                      Having battled against the iOS API to theme my applications I was extremely pleased when iOS 5 introduced UIAppearance, allowing individual user interface elements or entire classes of elements to be themed in a particular way. Recently one of our apps required support for iOS 4.3 so I had to go back to my previous (more painful) method. I thought it might be useful to document both these methods

                                      • 欧宝体育官方网站APP·欢迎进入

                                        欧宝体育官方网站APP·欢迎进入 XML 地图 | Sitemap 地图

                                        • 【超簡単】【たった一行】UINavigationBarをスワイプで表示/非表示させる方法 - Qiita

                                          この記事について UINavigationBarを消す方法を調べていたところ、scrollViewにdelegateを設定する方法や、ライブラリを使う方法などがありましたが、新しい方法を見つけましたので共有します。 iOS8からUINavigationControllerに便利なプロパティが追加されたようです。 /// When the user taps, the navigation controller's navigationBar & toolbar will be hidden or shown, depending on the hidden state of the navigationBar. The toolbar will only be shown if it has items to display. @available(iOS 8.0, *) public v

                                            【超簡単】【たった一行】UINavigationBarをスワイプで表示/非表示させる方法 - Qiita
                                          • ナビゲーションバーのタイトルを画像にする方法 - 廣川政樹の開発ブログ - Dolice Lab

                                            ナビゲーションバーのタイトルと背景を画像にするサンプルを以下に作成しました。 サンプルでは、まず UINavigationItemを定義し、その titleViewプロパティに UIImageViewを入れる事でナビゲーションバーのタイトルを画像にしています。 背景画像は、UINavigationBarの setBackgroundImageメソッドを使用することで任意の画像を指定できます。 下記よりサンプルのダウンロードが行えます。 ダウンロード https://github.com/masakihirokawa/objc-ui-navigationbar-title-image サンプルソースコード //ナビゲーションバー初期化 - (void)initNavigationBar { //ナビゲーションバーの設定 [self.navigationController setNaviga

                                              ナビゲーションバーのタイトルを画像にする方法 - 廣川政樹の開発ブログ - Dolice Lab
                                            • iOS7でNavigationBarに入れたSearchBarにキャンセルボタンを出現させる方法 - Qiita

                                              Xcode4でiOS6用に作成していたプロジェクトを Xcode5でiOS7用にしていた際に発生した問題があったのでメモ代わりに。 ※追記 iOS7.1では修正されているようで、本記事のようなバッドノウハウは必要ないとのコメントを頂きました。 CancelButtonが表示されない iOS6では、UINavigationBarにUISearchBarを入れた場合、 showsCancelButtonにYESを入れてやるだけでちゃんとキャンセルボタンが表示される。 しかし、どうもiOS7ではそうゆう訳にはいかないようで少し工夫する必要があった。 具体的にはUISearchBarを適当なUIViewに入れてやり、それをUINavigationBarに挿入することで解決。 UISearchBar *searchBar = [[UISearchBar alloc] initWithFrame:CG

                                                iOS7でNavigationBarに入れたSearchBarにキャンセルボタンを出現させる方法 - Qiita
                                              • Fousa ~ Empty back button in iOS 7

                                                The new UINavigationBar style changed a bit in iOS 7. A simple arrow is now displayed by default followed by the title of the previous UIViewController on the navigation stack. Now I wonder if I could just remove the text and only keep the arrow. Just because it's not always useful to show the text. Most of the time you know where you're coming from, and you can just use all the space available on

                                                • Cocoaの日々: 10月 2011

                                                  UIAppearanceプロトコル iOS5 から UIAppearance プロトコルが導入された。このプロトコルを使うと UINavigationBar や UISwitch のインスタンスの色を変更することができる。変更の仕方はこんな感じ。 [[UISwitch appearance] setOnTintColor:[UIColor greenColor]];UIAppearance が有用なのは、上記の通りインスタンスではなくクラスに対して色設定ができること。つまりこれを使うと画面上で使われているすべての UISwitch の色を変えることができる。 例えば緑基調の画面があったとして、UIAppearance プロトコルを使うと別の色(例では赤)に変更することができる。 上記の例は1画面だけだが、アプリで使われるすべての画面で色が変わる。 上記例の色変更の箇所のコードはこんな感じ。

                                                    Cocoaの日々: 10月 2011
                                                  • [LinkedIn] iOS7アップデート作業で気づいたこと - ワザノバ | wazanova.jp

                                                    http://engineering.linkedin.com/mobile/updating-ios-7-its-not-over-til-flat-lady-sings LinkedInがエンジニアブログで、9/23にリリースしたiOS7対応のアップデート作業を紹介しています。 1) デザイン修正箇所 ステータスバー ナビゲーションバー: アイコン、ラベル 検索バー 丸いcornerをとる shadow/gradientをとる ボタンをフラット化 ぼかしを利用する 2) 体制 1 Product Manager, 1 Designer, 2 Engineers, 1 Web Developer, 1 intern, 1 QA Engineer 3) Navigation Bar padding issues UINavigationItem.leftBarButtonItem は左側、

                                                    • UIViewControllerに独自でUINavigationBarを実装する場合 | きぶんはおっさん

                                                      あまりWebに転がってなかったので記載。 // ナビゲーションバーを生成 UINavigationBar* objectNaviBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(xPoint, yPoint, xRange, yRange)]; navBarTop.alpha = alpha; ※ xPoint - 起点X座標、yPoint - 起点Y座標、xRange - ナビゲーション幅、yRange - ナビゲーション高さ、alpha -ナビゲーションのα値 // ナビゲーションアイテムを生成 UINavigationItem* naviItem = [[UINavigationItem alloc] initWithTitle:@"タイトル"]; // 戻るボタンを生成 UIBarButtonItem* backButt

                                                      • [Tips]UINavigationBarの背景を画像にする » SHINGOLOG

                                                        UINavigationBarの背景を画像にするTipsです。 背景画像を上手く取り入れて、アプリらしさを演出しましょう。 こんな感じで、アレンジ出来ますよ。 まず、フレームワークでQuartzCore.frameworkを追加。 そして、メインファイルで下記を記述。 #import <QuartzCore/QuartzCore.h> UINavigationBar *navigationBar; navigationBar = navigationController.navigationBar; // imageviewの生成とサブビュー追加 UIImageView *imageView; UIImage *image; image = [[UIImage imageNamed:@"背景画像.png"] stretchableImageWithLeftCapWidth:0 topC

                                                        • Xcode のブレークポイントを条件判定して止める方法 | Sun Limited Mt.

                                                          Xcode のブレークポイントを条件判定を指定して条件に合った時だけ止める方法です。 例えば以下のコードのように1000回ループを回す処理があったとします。 for (int i=0; i<1000; i++) { NSLog(@"i=%d", i); } このループの500回目、つまり i==500 の時だけブレークポイントで止める方法になります。 NSLog の行にブレークポイントを設定して、コンテキストメニューから「ブレークポイントを編集」を選択します。 ブレークポイントの条件を指定します。今回は i==500 を指定しました。 これで実行すると、ループ処理で毎回止まることなく i==500 のときのみ止めることができます。 値を監視するとかはよく使っていたのですが、この条件判定で止める方法は知りませんでした。以下の本を読んで初めて知りました。まだまだ勉強不足です。 関連する投稿 B

                                                          • dentakurouの日記

                                                            10/9追記:公式なアナウンスがでました。「Communityエディションのご利用は個人の方の利用のみに限定されておりましたが、その利用可能範囲が拡大されました。」 UiPathの日本法人、というか日本語Webサイトだけが企業でのCommunity Editionの使用を禁止しているような記述をしており、UiPath日本法人に問い合わせたり、ルーマニアのUiPath法務に問い合わせた始終を以下に書きました。 2017-10-18 無料のUiPath Communityエディションは実は一般企業でも堂々と使える 2018-08-15 今でも無料のUiPathコミュニティエディションが日本企業で使える件 結論としては使用して良いとのお墨付きをUiPath本社からいただいていたものの、お客様にコミュニティエディション(以降CEと略します)での検証を勧めたり、社内トレーニングに使うわけにもいかず困

                                                              dentakurouの日記
                                                            • UITableViewの一番上に隙間が出来てしまう件 | The Wacul Blog

                                                              こんにちは、wacul開発メンバーの kyoh です。 WWDC2014でSwiftが発表された時、 恋に落ちる音を聞いた気がします。 さて、今日は、最近iPadアプリの開発中に遭遇した不可解な事象と、その解決方法について書いてみようと思います。 UITableView の狭き門、険しい道 iOSアプリといえば凡そ避けることのできない「UITableView」ですが、一癖も二癖もあるそれに悩まされるのはiOS開発の登竜門となっているようです。 今回私も、そんな登竜門の狭い門柱に引っかかって苦しめられました。 謎の隙間が発生する UITableViewController ベースの画面を作り、UINavigationControll に push した時のことです。 表示された画面には、ナビゲーションバーとセクションヘッダとの間に、意図しない隙間が表示されていました。 正体不明! REVEA

                                                                UITableViewの一番上に隙間が出来てしまう件 | The Wacul Blog
                                                              • 「南東京iPhone開発者勉強会 12回目」に参加して来ました(その2) - 強火で進め

                                                                めぐめぐ5様:「iPhoneとAndroidで同じアプリを作ってみた」 【スライド資料】 Androidは解像度が端末ごとに異なるのでどこが伸びたり余白が出たりするかを考えて制作する必要が有る アスペクト比も違ったりする お客さんもiPhoneユーザだったりするのでAndroid固有の特徴を理解してない わからないならエンジニアに聞こう 解像度ごとにフォルダを分ける→新しい解像度が増えた時に新たにフォルダを追加するなどメンテナンスは必要 QA 今はAndroid開発の方が需要が有るのですか→野良アプリがリリース可能という部分に需要有り (質問メモれず)→タブの位置がAndroidは上だがiPhoneと合わせてくれと言われる為、画面の下に自前でタブを準備した。スクロールも問題に。Androidは縦か横だけで斜めのスクロールが出来ない。こちらも自前で準備 UIで差分が有って大変という話ですが他

                                                                  「南東京iPhone開発者勉強会 12回目」に参加して来ました(その2) - 強火で進め
                                                                • Jared Sinclair | Blog | Wrestling with Status Bars and Navigation Bars on...

                                                                  Wrestling with Status Bars and Navigation Bars on iOS 7While updating Riposte and Whisper for iOS 7, one of the recurring problems I had was getting our view hierarchy to layout correctly. The most troublesome APIs are those for the system status bar and UINavigationController. The API documentation is woefully inadequate as of this writing. The following is, to the best of my knowledge, essential

                                                                    Jared Sinclair | Blog | Wrestling with Status Bars and Navigation Bars on...
                                                                  • FlatUIKit - a.out

                                                                    FlatUIKit は Flat UI フレームワークを元にデザインされた iOS 向けのコンポーネントライブラリ。 フラットなデザインのアプリを簡単に作ることができる。 Button、Switch、Segmented Control などの基本的なコンポーネントはすべて用意されている。 さらに Alert View も用意されていて、表示・非表示の際のアニメーションもちゃんと実装されている。 使い方 このライブラリはカスタムクラスとカテゴリによる拡張の2つで構成されている。 例えば、フラットなボタンが使いたいなら FUIButton クラスを使うのだが、フラットなナビゲーションバーが使いたいなら UINavigationBar+FlatUI.h カテゴリをインポートして configureFlatNavigationBarWithColor: を呼び出さないといけない。 ボタン (FUI

                                                                      FlatUIKit - a.out
                                                                    • UIToolBarとそのボタンもコードで追加する - Kazzz's diary

                                                                      UINavigationControllerにはナビゲーションバーの他に、下端にツールバー(UIToolBar)を配置することができる。 UIViewControllerのプロパティはインタフェースビルダのアトリビュートインスペクタで確認、変更することができる。ツールバーに関してもこれで設定すれば良いように思うのだが、 実際にはツールバーは表示されない。 なのでviewDidLoadメソッド等で以下の一行を追加すると //ツールバーの初期化 self.navigationController.toolbarHidden = NO; このように今度は表示される。(ひょっとしたら他に方法があるのかもしれないが、私には分からなかった) UIToolBarはUINavigationBar同様にボタン(UIBarButtonItem)を配置することができるので、前回同様にコードから追加してみた。 U

                                                                        UIToolBarとそのボタンもコードで追加する - Kazzz's diary
                                                                      • [iOS] Fabric 入門 #10 Digits をカスタマイズする | DevelopersIO

                                                                        Digits の UI や挙動をカスタマイズしたい 前回は Fabric の SMS 認証サービスである Digits の使いかたについて解説しました。基本的にはそれで事足りそうですが「テーマカラーをアプリに合わせたい」や「任意のタイミングで処理を走らせたい」といったこともあると思います。そのようなことを想定し、Digits はある程度カスタマイズできるような機能が提供されています。 今回は、そのようなカスタマイズについてまとめたいと思います。前回の記事の応用編になるので、前回の記事をお読みいただいてからご覧いただけると幸いです。 任意のタイミングで処理させたい 前回の実装は、 を使って認証処理を実行する、といったものでした。処理開始のトリガは必ずしもボタンをタップしたときとも限りません。Digits の authenticateWithDigitsAppearance:viewContr

                                                                          [iOS] Fabric 入門 #10 Digits をカスタマイズする | DevelopersIO
                                                                        • [iOS 8] App Extension #4 – Action Extension | DevelopersIO

                                                                          Action Extension Action Extension は iOS 8 より利用できるようになった App Extension が提供する機能の一部です。これは、アプリが提供する機能を他のアプリから利用できるようにする Extension で、Extension の中でも割り合い汎用的な機能を備えています。 Action Extension の主な利用用途としては、他のアプリが保持しているデータを独自の形式で表示したり、他のアプリが保持しているデータに対して、ユーザーが編集を行うための独自の UI を提供するといったことが挙げられます。 サンプル Extension の作成 今回は、host app から Web ページの URL を受け取って WebView でページを表示する Extension のサンプルを作成したいと思います。ソースコードは GitHub に公開してある

                                                                            [iOS 8] App Extension #4 – Action Extension | DevelopersIO
                                                                          • How to draw a transparent UIToolbar or UINavigationBar in iOS7

                                                                            I would like an entirely transparent UIToolbar and/or UINavigationBar. I have tried the various incantations suggested for pre- and post-iOS 5 but none seem to work any more. How might this be accomplished in iOS 7?

                                                                              How to draw a transparent UIToolbar or UINavigationBar in iOS7
                                                                            • Adding pagination to the right side of a UINavigationbar

                                                                              A designer asked me to add pagination to a UINavigation bar in a project with its target building for ios4.3+. I know you can add two buttons to the right side of a Navigation bar as explained here in this blog : enter link description here But to get the appearance requested to by the designer Do I need to add images to my button or is this some kind of native control(Special UISegmentedControl?)

                                                                                Adding pagination to the right side of a UINavigationbar
                                                                              • UINavigationBarの隅々までタップしたい

                                                                                2013/11/13 potatotips https://github.com/potatotips/potatotips/wiki/potatotips-1

                                                                                  UINavigationBarの隅々までタップしたい
                                                                                • GitHub - telly/TLYShyNavBar: Unlike all those arrogant UINavigationBar, this one is shy and humble! Easily create auto-scrolling navigation bars!

                                                                                  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 - telly/TLYShyNavBar: Unlike all those arrogant UINavigationBar, this one is shy and humble! Easily create auto-scrolling navigation bars!