並び順

ブックマーク数

期間指定

  • から
  • まで

281 - 292 件 / 292件

新着順 人気順

UINavigationBarの検索結果281 - 292 件 / 292件

  • 2010-09-07 - まったり開発Blog

    こういう色分けしたサブカテゴリがあるとして、紫のをタップしたら次の階層は こうなるようにしたかった。けれどただUINavigationBarのtintColorを変えたのでは、遷移アニメーションと関係なく色が切り替わってしまう。これはよろしくない。アニメーションと一緒にじわっと切り替わってほしい。 そこでCATransitionを使ってみた。UINavigationBarのカテゴリ。 #import <QuartzCore/QuartzCore.h> #import "RTDUINavigationBarAdditions.h" @implementation UINavigationBar (RTDUINavigationBarAdditions) -(void)setTintColor:(UIColor *)aColor animated:(BOOL)aBool { if (aBool

      2010-09-07 - まったり開発Blog
    • sonson@Picture&Software - [iPhone] HelloWorld

      1.アプリケーションクラス int main(int argc, char **argv) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; return UIApplicationMain(argc, argv, [MyApp class]); [pool release]; } UIApplicationがアプリケーションのインスタンスとなる. main文の中でallocされる. 2.アプリケーションクラスの実装 初期化は,アプリケーション起動後に呼ばれるメソッド,applicationDidFinishLaunchingに実装するのが良いようだ. @implementation MyApp - (void) applicationDidFinishLaunching: (id) unused { // Get

      • The Making of Prixing #1: Fly-in App Menu - Cyril Mottier

        “It’s the little details that are vital. Little things make big things happen.” – John Wooden Twitter G+ RSS Note: Everything I published on this website in the past had nothing to do with what I was doing at work. But now for Prixing I’m changing that, because I think it can be a great opportunity for me to give other developers some advanced Android UI development tips and tricks. As this is the

        • 한국 아이폰

          최신 아이폰 휴대폰 소식을 제공합니다.

            한국 아이폰
          • 開発する為のメモ集 UINavigationControllerのメモ

            nibを使わないUINavigationControllerを使った時に いろいろと嵌った内容を忘れないようにメモ 1.回転について autoresizingMaskで色々設定しても 上手くリサイズしてくれない。 safariのお気に入りにて回転を許してないぐらいだからバグなのか? なので、 shouldAutorotateToInterfaceOrientationの戻りでNOを返却するようにする 2.タイトルについて navigationControllerのpushViewControllerメソッドで追加したビューにタイトルを設定してもナビゲーションバー上にタイトルが表示されず。 同様に初期状態でのinitWithRootViewControllerにて追加したビューにもタイトルが設定されず ビュー内部で [self.navigationItem setTitle:title];

            • NavigationBarのタイトルを画像にする方法 - いろいろつまみ食い

              できないとばかり思っていた・・ controller.hに IBOutlet UINavigationBar* navigationBar;とIBOutletを設定して xibでUINavigationBarをViewにはりつけて Delegateを張っておく。 で、viewDidloadとかで UINavigationItem* item = [navigationBar.items objectAtIndex:0]; item.titleView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"hello_logo.png"]];とすればいいと・・ はぁ、、知りませんでした。 詳しくは・・ http://stackoverflow.com/questions/289441/uinavigationcontroller

                NavigationBarのタイトルを画像にする方法 - いろいろつまみ食い
              • setStatusBarHidden:NO after XIB load covers UINavigationBar

                When setStatusBarHidden:NO is set before the view loads, the UINavigationBar and other elements appear aligned immediately below the StatusBar as they should. However, when setStatusBarHidden:NO is set after the view loads, the UINavigationBar is partially covered. The StatusBar must be revealed after loading the said view, but how can this be done without encountering the aforementioned problem?

                  setStatusBarHidden:NO after XIB load covers UINavigationBar
                • Beyond The Button: Embracing The Gesture-Driven Interface — Smashing Magazine

                  If you are a mobile UI or UX designer, you probably remember the launch of Apple’s first iPhone. It introduced a completely touchscreen-centered interaction to a individual’s most private and personal device. It was a game-changer. Today, kids grow up with touchscreens, and touch and gesture interactions have a lot of potential to make mobile experiences easier and more fun to use. As a mobile UI

                    Beyond The Button: Embracing The Gesture-Driven Interface — Smashing Magazine
                  • UINavigationBarに背景画像を指定する方法 - 廣川政樹の開発ブログ - Dolice Lab

                    Objective-Cでナビゲーションバーに背景画像を指定するサンプルを以下に作成しました。iOSのバージョンを判別し、iOS5.0以上とそれ以外でリソースの取得方法を分けています。 ナビゲーションバーの背景画像の寸法は、縦幅320×横幅44ピクセルで作成しています。サンプルには PSDファイルも入っていますので、お好みのデザインに編集してご使用ください。 サンプルダウンロード https://github.com/masakihirokawa/objc-ui-navigationbar-custom-image ソースコード - (void)initNavigationBar { //ナビゲーションバーを初期化 UINavigationBar *navigationBar = [[UINavigationBar alloc] initWithFrame:CGRectMake(0, 0,

                      UINavigationBarに背景画像を指定する方法 - 廣川政樹の開発ブログ - Dolice Lab
                    • UINavigationBar を表示しつつ、その他のインターフェイスの座標は変えない « 水色のドア

                      UINavigationController を使うと、デフォルトでは UINavigationBar 以外のインターフェイスが44pxずれますね。 ずれを無くすためには、一行加えればOKです。 - (void)viewWillAppear:(BOOL)animated { // UINavigationBar 44px のずれを無くす self.navigationController.navigationBar.translucent = YES; } なお、UIStatusBar 20px 分のずれも無くす場合、次のように書きます。 - (void)viewWillAppear:(BOOL)animated { // UINavigationBar 44px のずれを無くす self.navigationController.navigationBar.translucent

                      • iPhone.design » プログラマではない人のためのiPhone アプリ制作ガイド[ブログ編]

                        iPhoneアプリ制作にあたって参考にさせていただいたブログです。 開発中は本当にたくさんのブログにお世話になりました。ありがとうございます。 基本編 @IT:Cocoaの素、Objective-Cを知ろう iPhoneアプリ開発の虎の巻 福井高専IT研究会OfficialWiki サルにもできるiPhoneアプリの作り方 Cocoa と touch, Cocoa で touch: iPhone SDK アプリ開発をやっている人なら、恐らく誰でも一度は見たことのあるサイトではないかと思います。「 iPhoneアプリ開発の虎の巻」や「福井高専IT研究会OfficialWiki」は開発中は毎日のように通っていました。 「サルにもできるiPhoneアプリの作り方」はフォーラム(寺子屋)もあり、開発者同士の意見交換なども行われています。 C言語 Inokuchi Home Page:X

                        • [XCODE] UINavigationBarの左右にボタンを追加するいろいろな方法 - YoheiM .NET

                          こんにちは、@yoheiMuneです。 今日は、ナビゲーションバーにボタンを追加する方法をブログに残したいと思います。 簡単なことなのですが、いつも忘れてしまうので、備忘録としても残したいと思います(・∀・) ナビゲーションバーに追加するボタン ナビゲーションバーには、UIBarButtonItemを使ってボタンを追加することが出来ます。 追加可能なボタンは選択の自由が広く、UIBarButtonItemは様々な作り方が出来ます。 上図の挿絵は、ナビゲーションバーの左右にボタンが配置されたイメージとなります。 UIBarButtonItemの作り方とナビゲーションバーへの追加方法 以下のようにいくつか作り方があります。それぞれ用途にあった方法で作成することが可能です。 表示文字列を指定してUIBarButtonItemを作成する // UIBarButtonItemに表示文字列を渡して、イ

                            [XCODE] UINavigationBarの左右にボタンを追加するいろいろな方法 - YoheiM .NET