並び順

ブックマーク数

期間指定

  • から
  • まで

201 - 240 件 / 293件

新着順 人気順

UINavigationBarの検索結果201 - 240 件 / 293件

  • 使わなきゃ損! 厳選イケてるSwift/iOSライブラリ

    ホーム / アプリ開発 / 使わなきゃ損! 厳選イケてるSwift/iOSライブラリ 2015.08.25Photo by Samantha Marx 「iOSライブラリたくさんあるけど、どれを使おうか」「このアプリで使われている機能利用したいのに…」 と思う方、月100個はアプリを研究している僕がイケてるiOSライブラリをまとめましたよ! イケてるiOSライブラリ!全員集合! PageMenu このライブラリのいいところは、横スクロールで複数のメニューが使えるところです。UITabBarControllerのような定番メニューに飽きた、上部にメニューに置きたいというニーズに応えてくれているイケてるライブラリです。  SCLAlertView-Swift  定番のUIAlartViewControllerとは一味違ったフラットデザインのSCLAlertViewです。UIAlartViewC

      使わなきゃ損! 厳選イケてるSwift/iOSライブラリ
    • YFFileBrowser, an iPhone Alternative to NSSavePanel - The Hacking Cocoa Weblog

      I've recently been involved in two iPhone projects that required a user interface control similar to what NSSavePanel gives us on the Mac. I thought long and hard about implementing something using a UINavigationController and a UITableViewController, but for a number of reasons that solution just didn't seem appropriate. For one, these projects are MobileSubstrate extensions to the MobileSafari

      • UINavigationBar・UITabBar のカスタマイズ方法について - Qiita

        UINavigationBarとUITabBarのカスタマイズ方法について。 ナビバーの背景を透過させる・下線を消す -[UINavigationBar setBackgroundImage:forBarMetrics:] -[UINavigationBar setShadowImage:] それぞれで空の UIImage インスタンスを指定する。nil にすると駄目らしい [navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault]; [navigationBar setShadowImage:[[UIImage alloc] init]];

          UINavigationBar・UITabBar のカスタマイズ方法について - Qiita
        • UINavigationBarに複数のボタンを配置する | Studio Amuate

          UINavigationBarはデフォルトでは左右にひとつずつしかボタンを配置することが出来ない。 UISegmentedControlを配置する、UIToolbarを上部に表示するなど、いくつかやり方はありますが、今回はUIToolbarのサブクラスとしてCustomToolbarを用意し、それをUIBarButtonItemにセット。ナビゲーションバーの右側に表示するという方法。 TestViewController.h #import <UIKit/UIKit.h> @interface CustomToolbar : UIToolbar @end @interface TestViewController : UIViewController { } @end TestViewController.m #import "TestViewController.h" @impleme

          • iOS7-UINavigationBarの戻るボタンに設定した画像が表示されない時の対応策 | rananculus

            iOS7にすると、UINavigationBarの戻るボタンに設定した画像が表示されなくて困ったので原因を調べてみました。 元々は結構昔から使ってるコードで、遷移前のページで UIImage *barBackBtnImg = [[UIImage imageNamed:@"nav_icon_return.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(0, 40, 0, 0)]; [[UIBarButtonItem appearance] setBackButtonBackgroundImage:barBackBtnImg forState:UIControlStateNormal barMetrics:UIBarMetricsDefault]; [[self navigationItem] setTitle:@" "]; こんな感じで設

            • Customize navigation bar appearance with swift (Example)

              Change navigation bar color In order to change color of navigation bar for all view controllers, you have to set it in AppDelegate.swift file Add following code to didFinishLaunchingWithOptions function in AppDelegate.swift var navigationBarAppearace = UINavigationBar.appearance() navigationBarAppearace.tintColor = uicolorFromHex(0xffffff) navigationBarAppearace.barTintColor = uicolorFromHex(0x034

                Customize navigation bar appearance with swift (Example)
              • MASATOの開発日記: UINavigationController使用時にフルスクリーン表示する方法

                UINavigationControllerを使うと、Viewのサイズが勝手にリサイズされてしまいます。 普段は便利なのかもしれませんが、 ナビゲーションバー(UINavigationBar)やツールバー(UIToolbar)を透明にしたとき、 その裏に描画できなくて困ります。 これを避けて、以下のように画面全体に描画する方法を調べましたので書いておきます。 UIViewControllerにwantsFullScreenLayoutというプロパティがあるので、 それをYESに設定すれば完了です。 - (void)viewDidLoad { [super viewDidLoad]; self.wantsFullScreenLayout = YES; } UIViewControllerがnibに登録されている場合は、以下のようにInterface Builderから設定することもできます。

                • 【使ってみた】KoaPullToRefresh - なんだってやってみる

                  2014-05-15 【使ってみた】KoaPullToRefresh 使ってみた Objective-C iOS CocoaPods 【スポンサード リンク】 目次 はじめに 使ってみた感想 良かった点 引っ張っている状態や引っ張りきった状態、ロード中などの文言を簡単に追加できる。 PullToRefreshの背景色や文言のフォントやサイズ、色などを変えられる。 blockを使うので、処理がわかりやすい。 悪かった点 link link 実装するメソッドの紹介 終わり はじめに cocoapodsの中にあるライブラリが沢山あるので、その中から興味あるものを選んで使ってみました。 今回はUITableViewなどでよく見る引っ張って更新系のKoaPullToRefreshです。 みなさんの開発の参考になればと思いまして、記事にしました。 GitHubにサンプルプロジェクトを含めて公開してある

                    【使ってみた】KoaPullToRefresh - なんだってやってみる
                  • iOS6とiOS7のナビゲーションバーとタブバーを同じフラットなデザインにする - Qiita

                    はじめに 自分で作成したアプリに必要になり、実装してみた忘備録です。 Objective-c初心者です、実装方法が最適でない可能性があるため参考程度にしてください。もっといい方法があったらコメントください。 とりあえず見た目は整えられます。 ではさっそく。 目標イメージ それぞれデフォルトからフラットな感じにする。 ※作成したアプリの一部を抜粋しています。 コード ナビゲーションバー、タブバーのほとんどはバージョン別で記述する。 タブアイテムの画像の共通の設定方法でいけます。 詳細はコード内コメントを参考にしてください。 - (void)viewDidLoad { [super viewDidLoad]; //ステータスバーの色を設定 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightCont

                      iOS6とiOS7のナビゲーションバーとタブバーを同じフラットなデザインにする - Qiita
                    • Quick Look Debugging

                      Written by Nate Cook March 30th, 2015 This article has been translated into: 中文 Debugging can be an exercise in irony. We create programs that tell our pint-sized supercomputers to complete infinitely varied and incalculable tasks on our behalf, yet when trying to understand those same programs, we tell the computers to wait for us. For example, suppose I’m trying to figure out why the UINavigatio

                        Quick Look Debugging
                      • How to set edgesForExtendedLayout to none in Swift 3

                        The problem is that my View, containing a UIView and a UITableView within a ScrollView, gets hidden under the UINavigationBar if set translucent. I have considered several threads like this, but they all suggest to set: self.edgesForExtendedLayout = UIRectEdgeNone In Swift 2, this code was: self.edgesForExtendedLayout = .None I have updated to Xcode 8.1 and Swift 3.0.1 today, but I can't find anyt

                          How to set edgesForExtendedLayout to none in Swift 3
                        • 『iPhoneアプリ開発、その(171) モーダルでの正しいナビビュー』

                          前回、モーダルビューで無理矢理UINavigationBar挿入したわけですが、ここらへん、もう少しスマートにならないかと思いつつ 読んでるとpresentModalViewController:animated:で渡すUIViewContrillerはUINavigationControllerも受け付けるって書かれてたんですよ。 おおお、その手があったか、ちゅーわけでFirstViewControllerのmodalViewActionをちょい改造。 - (IBAction)modalViewAction:(id)sender { if (contributionViewController == nil) contributionViewController = [[NewFlowerViewController alloc] init]; UINavigationControlle

                            『iPhoneアプリ開発、その(171) モーダルでの正しいナビビュー』
                          • Detect if the device is iPhone X

                            My iOS app uses a custom height for the UINavigationBar which leads to some problems on the new iPhone X. Does someone already know how to reliable detect programmatically (in Objective-C) if an app is running on iPhone X? EDIT: Of course checking the size of the screen is possible, however, I wonder if there is some "build in" method like TARGET_OS_IPHONE to detect iOS... if (UI_USER_INTERFACE_ID

                              Detect if the device is iPhone X
                            • チーズくんの備忘録 [iOS]戻るボタンを消す方法

                              このソースをナビゲーションバーに呼び込んでいるコントローラ各々のviewWillApperメソッド内で書いてあげるとBackButtonはきれいに消えます。 //間違ってもUINavigationControllerに対して行わないように -(void)viewWillApper:(BOOL)animated{ [self.navigationItem setHidesBackButton:YES animated:NO]; } 続きには事の顛末を書いてます。 UINavigationItemと言えば、UINavigationBarに表示されるバックボタンやボタンアイテムのことを指す。 私はこれまでこれらをUINavigationControllerで定義されているものだとつい思いこんでいた。 ところがこれがちがった。 実はUIViewControllerの中に存在した。 ずっと前から気に

                              • UINavigationControllerのBackボタンをハンドルする-logiclogic's blog | logiclogic's blog

                                UINavigationControllerでpushした時に自動でUINavigationBarの左側に出てくるBackボタンをハンドルしたいことはたくさんあると思います。 他のボタンと違ってこのボタンはUINavigationBarDelegateを使ってうまく扱ってあげる必要があります。 UINavigationBarDelegateの処理を毎回書くのもよいのですが、今回はUINavigationControllerを拡張してこの辺りを簡単に実装できるNavigationContollerを作ってみました。 UINavigationBarDelegate UINavigationBarDelegateには4つの関数が用意されています。 - (BOOL)navigationBar:(UINavigationBar *)navigationBar shouldPopItem:(UIN

                                • Recreating the iBooks wood themed navigation bar

                                  Full Source code: https://github.com/boctor/idev-recipes/tree/master/WoodUINavigation Problem: Recreate the wood themed navigation bar of Apple’s iBooks app. Solution: First we’ll extract the images from the iBooks app and find the main navigation bar image: Next we’ll add this wood background image as a subview of the UINavigationBar. We add it at the bottom of the z-order so that the buttons are

                                  • Write native iPhone applications using Eclipse CDT How Windows and Linux developers can bypass the iPhone SDK and write iPhone apps using open source tools Skill Level: Intermediate PJ Cabrera (pjcabrera@pobox.com) Freelance Software Developer and Writer

                                    Write native iPhone applications using Eclipse CDT How Windows and Linux developers can bypass the iPhone SDK and write iPhone apps using open source tools Skill Level: Intermediate PJ Cabrera (pjcabrera@pobox.com) Freelance Software Developer and Writer Freelance 30 Sep 2008 Learn how to use the Eclipse C Development Toolkit (CDT) to program native applications for the Apple iPhone, using open s

                                    • Sketch で始める iOS の自作 UI 素材 〜 UINavigationBar 背景画像の作成と実装例 〜 | rakuishi.com

                                      iOS アプリが標準パーツで動く形になって、次に気になるのは UI 素材をどのように自作するかです。素材は引き伸ばしてもギザギザならないベクタ形式で作成するのが好ましいですが、代表する illustrator が高価で、始めるハードルが高いように思います。 UI デザインを作成するためのドローソフト Sketch を利用すれば、簡単に UI 素材が作れます。4,300 円といい値段がしますが、illustrator と比べると安価で、機能も申し分ないと思います。そして、何よりも動作が軽いのが特徴です。 この記事では、Sketch で iOS の自作 UI 素材を作成する一例として、UINavigationbar の背景素材を作成していきます。 Sketch 2.2.3(¥4,300) まずは、標準の UINavigationBar の研究 まずは、標準の素材を研究して方針をたてましょう。下

                                        Sketch で始める iOS の自作 UI 素材 〜 UINavigationBar 背景画像の作成と実装例 〜 | rakuishi.com
                                      • PythonでのiPhoneアプリ-GroupedTableViewサンプル - adonishiの日記

                                        前に書いた、Pythonで作るiPhoneアプリのサンプルを見ていたのだけれど、アドレスブックの内容(名前のみ)の一覧をざーっとテーブルにするだけで、あまり面白くない。(sqliteとの連携が簡単って所はいいのだけど。) もっとよくある感じの画面に沢山ボタン等が出てる感じのサンプルを作ってみた。 実はこれもテーブル(TableView)の一種で、TableViewを作るときにstyleを「UITableViewStyleGrouped」に指定すると、こんな感じのを作ることができる。 簡単にこのボタン等を変えられるように、プログラム中で、、、 self.sections_ = [ {"header": "header 1", "items": [{"title": "title 1", "action": lambda p: self.callback(p)}]}, {"header": "

                                          PythonでのiPhoneアプリ-GroupedTableViewサンプル - adonishiの日記
                                        • Make UINavigationBar transparent

                                          How do you make a UINavigationBar transparent? Though I want its bar items to remain visible.

                                            Make UINavigationBar transparent
                                          • SwiftでUITabBarとUINavigationBarをスクロール時にサクッと隠す - Qiita

                                            func scrollViewWillEndDragging(scrollView: UIScrollView, withVelocity velocity: CGPoint, targetContentOffset: UnsafeMutablePointer<CGPoint>) { if velocity.y > 0 { //上下のバーを隠す hidesBarsWithScrollView(scrollView, hidden: true, hiddenTop: true, hiddenBottom: true) } else { //上下のバーを表示する hidesBarsWithScrollView(scrollView, hidden: false, hiddenTop: true, hiddenBottom: true) } } /** * コントローラ上のtabBarとNavi

                                              SwiftでUITabBarとUINavigationBarをスクロール時にサクッと隠す - Qiita
                                            • CoreData tutorial in Swift 5 using NSFetchedResultsController

                                              CoreData tutorial in Swift 5 using NSFetchedResultsController Let us see an example TaskManager app using CoreData written in Swift Programming language. This app provides the following functionality Allow users to enter new taskUpdate existing taskdelete task You can download source code for this project from Github. If you are familiar with user interface then move on to the Core Data implementa

                                                CoreData tutorial in Swift 5 using NSFetchedResultsController
                                              • 使い勝手とパフォーマンスを意識した詳細画面の実装 - アクトインディ開発者ブログ

                                                iOS アプリエンジニアの namikata です。この度、いこーよアプリでは GW の大型連休に合わせて、スポット詳細画面のリニューアルを行いました。 いこーよ-子どもとおでかけ・イベント・旅行・観光アプリ Actindi Inc.ナビゲーション無料 いこーよアプリが誕生したのが約 3 年前。3 年間 iOS アプリ の開発を担当されてもらって、今回のリニューアルでは、リリース当時は技術的にも時間的にも対応する事ができなかった部分の工夫を行う事ができたので、いくつか紹介したいと思います。 UITableView で組んでいます。 工夫した点 UI に関する事 画像の上部全画面表示 写真を下部までスライドしたら navigation を切り替える スクロールに合わせて固定される Menu Web を彷彿とさせるページ内リンク TableView の Cell の中で、要素の繰り返しが発生し

                                                  使い勝手とパフォーマンスを意識した詳細画面の実装 - アクトインディ開発者ブログ
                                                • UINavigationBar changes in iOS13 | Sarunw

                                                  Offline Transcription: Fast, privacy-focus way to transcribe audio, video, and podcast files. No data leaves your Mac. Try it for Free Apple brings a lot of appearance changes in iOS13 and the navigation bar is one of them. What's changed In iOS13 the default appearance of the large title style navigation bar has changed from translucent to transparent. Nothing changes much in a plain style table

                                                    UINavigationBar changes in iOS13 | Sarunw
                                                  • Cocoa Touch UIKit勉強(1)

                                                    ☆Cocoa Touch UIKit勉強(1) UIKitクラス階層構造 UIKitのビューとコントロールのクラス継承構造は、以下のようになっている。 個々のクラス説明ではほとんど記述していないが、親クラスのメソッドやプロパティは全て子クラスでも使える。 NSObject +---UIResponder---UIView--+---UIWindow | | +---UILabel | | +---UIPickerView | | +---UIActivityIndicatorView | | +---UIProgressView | | +---UIImageView | | +---UINavigationBar | | +---UITabBar | | +---UIToolBar | | +---UIAlertView | | +---UIActionSheet | | +---UIS

                                                    • HTML5で位置情報取得 / HTML5をiPhoneのWebViewで表示させる簡易アプリ作成方法 - BASHI_BASHI

                                                      HTML5で何かアプリを作ってみようということで、 ・iPhoneアプリでHTML5を表示させる簡易Webブラウザ ・HTML5を使って位置情報を取得するサンプル を作りましたのでそのメモを。 iPhoneアプリでHTML5を表示させる簡易Webブラウザ 1、View-Based Application にて、新規プロジェクトを作成 2、ViewControllerクラスを編集 #import <UIKit/UIKit.h> @interface WebViewSampleViewController : UIViewController { UIWindow *window; IBOutlet UINavigationBar *navigationBar; IBOutlet UIWebView *webView; IBOutlet UIToolbar *toolBar; } @prope

                                                        HTML5で位置情報取得 / HTML5をiPhoneのWebViewで表示させる簡易アプリ作成方法 - BASHI_BASHI
                                                      • UINavigationControllerのUIToolbarサポート « Programmer’s High

                                                        iPhone 3.0になって、UINavigationControllerがUIToolbarを管理してくれるようになりました。UIToolbarを自前で管理しようとすると、UIViewControllerの管理するviewを階層化する必要があったり、その影響でUITableViewControllerが使えなくなったりと面倒な事が多かったのですが、UINavigationControllerに任せるとかなり楽になります。 具体的には、次のような事をやってくれます。 UINavigationBarのように、UIToolbarをUIViewControllerの管理するviewの外側で管理してくれる viewの階層構造が複雑化しませんし、UITableViewControllerも使えます。 UINavigationBarのように、UIToolbarに含まれるUIBarButtonIte

                                                        • [Swift]ナビゲーションバーの色を変更する

                                                          Swiftでナビゲーションバーの色を変更するTipsをご紹介します。 実行環境 Xcode7.1.1 OSX Yosemite バージョン10.10.5 AppDelegateで変更する場合 ナビゲーションバーのアイテムの色、背景色、タイトル文字色を変更したい場合は、AppDelegate.swiftの``` application:didFinishLaunchingWithOptions:``` メソッドで以下のような指定をします。 //AppDelegate.swift func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { // Override point for customization

                                                            [Swift]ナビゲーションバーの色を変更する
                                                          • ios7のnavigationbarをios6以前のデザインに合わせる方法 - Qiita

                                                            ios6 → ios7対応をする際にios6のデザインで対応する際の覚え書き レイアウト崩れ 原因は、ほぼこれ In iOS 7, view controllers use full-screen layout. At the same time, iOS 7 gives you more granular control over the way a view controller lays out its views. In particular, the concept of full-screen layout has been refined to let a view controller specify the layout of each edge of its view. 全体的に上部に寄ってしまっているのを対処 xcode4で作成したアプリをxcode5で見ると全体的に

                                                              ios7のnavigationbarをios6以前のデザインに合わせる方法 - Qiita
                                                            • iPhoneアプリ開発: UINavigationBar のタイトル部分にタッチイベント追加

                                                              UINavigationBar のタイトル部分にタッチイベントを追加する方法です。 ナビゲーションバーのタイトル部分をタッチすると、右図のようにその箇所が白くハイライトし、イベントに紐づいたメソッドが呼び出されるようになります。 - (void)viewDidLoad { [super viewDidLoad]; UIButton *navigationTitleButton = [UIButton buttonWithType:UIButtonTypeCustom]; navigationTitleButton.frame = CGRectMake(0, 0, 150, 45); navigationTitleButton.showsTouchWhenHighlighted = YES; navigationTitleButton.titleLabel.font = [UIFont bo

                                                                iPhoneアプリ開発: UINavigationBar のタイトル部分にタッチイベント追加
                                                              • Adding drop shadow on UINavigationBar (before iOS 6)

                                                                Adding drop shadow on UINavigationBar (before iOS 6) We’ve an update on this technique for iOS 6.1, please see Using custom drop shadows in UINavigationBar (fix for iOS 6.1) Somehow adding drop shadows on UINavigationBar using the CALayer property fails for me but I later find it out we just need a little trick there. // The magic is to have -[UIView clipToBounds] set to NO self.navigationControll

                                                                • [iOS SDK] UINavigationBar の戻るボタンの見た目をカスタマイズする | ラクイシロク

                                                                  UINavigationBar で、一個前の階層に戻る「戻るボタン」の外見をカスタマイズする際に、UIAppearance が使えそうで使えなかったので、独自に実装してみました。これよりもスマートな方法を知っていたら誰か教えてください。 UINavigationBar の戻るボタンの見た目をカスタマイズする カスタムされた戻るボタンを取り扱いやすいように、カテゴリによるクラス拡張を利用します。ここでは、「UIBarButtonItem+DesignedButton」というヘッダファイルとメソッドファイルを用意します。 下図(backbtn@2x.png)のような背景画像を用意しました。これに加えて、押された場合の背景画像(backbtn_hl)も用意しておきます。 UIBarButtonItem+DesignedButton.h #import <UIKit/UIKit.h> @inter

                                                                  • Implementing the Periscope App Pull-to-refresh control

                                                                    Yari D'areglia Senior iOS developer @ Neato Robotics by day, game developer and wannabe artist @ Black Robot Games by night. Follow @bitwaker In this tutorial I’m going to implement the “Pull To Refresh” control created for the iPhone app Periscope. It’s something new that caught my attention, so I thought I’d “disassemble” their layout trying to create something similar. Even if I’m not sure if t

                                                                    • 『iPhoneアプリ開発、その(170) モーダルに無理矢理ナビゲーションバー』

                                                                      てのがまぎれてて、あれっと思った人いると思うけど、取り忘れです。 あそこから推理して てやるつもりだろ?って思ってた人。 大正解。 ナブゲーションバー用意するくらいなら、最初からモーダルビューじゃなくナビゲーションバーにプッシュして表示した方がいいんじゃね? それも、ごもっとも。 あくまでモーダルビューにこだわるなら、下みたいに「閉じる」ボタンを用意するのがシンプルでいいんじゃないかとも思うんですが~ 習作なんでね、 モーダルビューでナビゲーションバー付けられるのかってのを確認もしたかったのでナビゲーションバー付けてみます。 まずは、NewFlowerViewController.hでメソッド内でアクセスできるようにナビゲーションバーのIBOutletを用意。 @interface NewFlowerViewController : UIViewController { IBOutlet

                                                                        『iPhoneアプリ開発、その(170) モーダルに無理矢理ナビゲーションバー』
                                                                      • how to create info button on uinavigationbar on iphone

                                                                        I've seen many of applications that have an info button (the letter "i" with a circle around it) on the uinavigationbar. How do I add this type of button?

                                                                          how to create info button on uinavigationbar on iphone
                                                                        • Modernizing Your UI for iOS 13 - WWDC19 - Videos - Apple Developer

                                                                          Streaming is available in most browsers, and in the WWDC app. iOS 13 combines powerful new multitasking and productivity technologies with a refreshed look and feel for all applications. Familiarize yourself with new requirements to keep your app ready for upcoming versions of iOS. Discover improvements to search fields and a totally new way to present UI. Learn how to adopt new gestures around se

                                                                            Modernizing Your UI for iOS 13 - WWDC19 - Videos - Apple Developer
                                                                          • iOS 7に適したデザインで作る その4 – 文字と背景の色 | Cyber Passion for iOS

                                                                            前回のつづき iOS 7からはボタンもデフォルトでは文字だけになりました。それも踏まえて文字や背景の色の使い方について考え直す必要があると思います。ガイドラインを元に書きまとめたいと思います。 文字に色をつける まず基本は文字は黒にして、背景は白、もしくは文字が読みやすい色に留めるべきでしょう。ガイドラインにある通り背景にグラデーションの使用は避けて単色が良いです。その上で重要な箇所および押すことで反応がある箇所は、少し目立つ色(ハイライトカラー)にした方が良いでしょう。 上記のようにNavigationBar/Toolbarのボタンの文字およびアイコンの色は、デフォルトで青色です。よって「押して反応がある箇所をハイライトカラーにする」といったことを意識しなくても、自動的にそうなっています。 アプリ全体のNavgationBar/Toolbarのボタン色を変更したい場合もあると思います。以

                                                                              iOS 7に適したデザインで作る その4 – 文字と背景の色 | Cyber Passion for iOS
                                                                            • iOS 7.1対応版Ti SDK 3.2.2リリース、iOS7 × Tiのまとめ! - Ti Weekly Clips++ - Mobile Touch - モバイル/タブレット開発者およびデザイナー向け情報ポータル

                                                                              News - SDKアップデートやイベントなどのニュース ■Titanium 3.2.2 SDK Releases Same Day as iOS 7.1 Titanium SDK 3.2.2がリリースされました。 主なアップデート内容は同日にリリースされたiOS 7.1への正式対応、前回お伝えしたAndroid SDK Tools v22.6 とBuild-tools v19.0.3インストール時の不具合対応となっています。 詳細はリリースノートをご覧ください。 ■Titaniumもくもく会 #18 : ATND 4月のもくもく会は23日に渋谷のファンコミュニケーションズ様にて開催されるようです。 ■勉強会リマインダー Titaniumもくもく会 #17 : ATND KDDIウェブコミュニケーションズ6Fセミナールームにて3月19日に開催されます。 Tips & Topics - ノウ

                                                                                iOS 7.1対応版Ti SDK 3.2.2リリース、iOS7 × Tiのまとめ! - Ti Weekly Clips++ - Mobile Touch - モバイル/タブレット開発者およびデザイナー向け情報ポータル
                                                                              • ナビゲーションバーのフォントスタイルをカスタマイズする - 廣川政樹の開発ブログ - Dolice Lab

                                                                                ラベルを使用することで、ナビゲーションバーに表示するタイトルテキストのフォントスタイルをカスタマイズできます。以下にサンプルを作成しましたので、ご参考になれば幸いです。 サンプルダウンロード https://github.com/masakihirokawa/objc-ui-navigationbar-title ソースコード - (void)initNavigationBar { //UINavigationItem定義 UINavigationItem *navigation = [[UINavigationItem alloc] init]; //タイトルフォント設定 UILabel* label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 44)]; //背景色指定 label.backgroundColor = [

                                                                                  ナビゲーションバーのフォントスタイルをカスタマイズする - 廣川政樹の開発ブログ - Dolice Lab
                                                                                • UINavigationBarの背景画像とタイトルフォントを変更してクールに仕上げる | おいのブログ

                                                                                  アプリのほうを作ろうと、ちょくちょくコーディングを行なっているところです。 その際に、UINavigationBarに対して背景画像を設定してタイトルに対して影を付けたかったので、ちょっと調べてみました。 まず、UINavigationBarへの背景画像の設定。 AppDelegateに書いてあげれば全てのビューに反映されます。 // NavigationBarの背景画像を設定する UIImage *image = [UIImage imageNamed:@&quot;background.png&quot;]; [[UINavigationBar appearance] setBackgroundImage:image forBarMetrics:UIBarMetricsDefault]; [[UINavigationBar appearance] setTintColor:[UICol