runlooprun.wordpress.com runlooprun.wordpress.com

runlooprun.wordpress.com

runLoop run]; | iPhone / iPad / iPod touch / Mac アプリ開発にまつわる話

iPhone / iPad / iPod touch / Mac アプリ開発にまつわる話

http://runlooprun.wordpress.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR RUNLOOPRUN.WORDPRESS.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

November

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Friday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.2 out of 5 with 13 reviews
5 star
5
4 star
6
3 star
2
2 star
0
1 star
0

Hey there! Start your review of runlooprun.wordpress.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

1.1 seconds

FAVICON PREVIEW

  • runlooprun.wordpress.com

    16x16

  • runlooprun.wordpress.com

    32x32

CONTACTS AT RUNLOOPRUN.WORDPRESS.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
runLoop run]; | iPhone / iPad / iPod touch / Mac アプリ開発にまつわる話 | runlooprun.wordpress.com Reviews
<META>
DESCRIPTION
iPhone / iPad / iPod touch / Mac アプリ開発にまつわる話
<META>
KEYWORDS
1 skip to content
2 follow
3 twitter
4 runloop run ;
5 profile
6 が、 cocoapods
7 を使って簡単にインストールできるようになりました
8 さんに 提案
9 いただいたから
10 dictav さん、ありがとうございます
CONTENT
Page content here
KEYWORDS ON
PAGE
skip to content,follow,twitter,runloop run ;,profile,が、 cocoapods,を使って簡単にインストールできるようになりました,さんに 提案,いただいたから,dictav さん、ありがとうございます,rekit についてのリアルタイムな情報は @zuccoi,でつぶやく予定です,read more…,leave a comment,インスタンス毎の動的メソッド実装 上書き機能を備えた rekit,や 日本語 readme,を参照してください,site
SERVER
nginx
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

runLoop run]; | iPhone / iPad / iPod touch / Mac アプリ開発にまつわる話 | runlooprun.wordpress.com Reviews

https://runlooprun.wordpress.com

iPhone / iPad / iPod touch / Mac アプリ開発にまつわる話

INTERNAL PAGES

runlooprun.wordpress.com runlooprun.wordpress.com
1

UITextView をキーボードと連携させる | runLoop run];

https://runlooprun.wordpress.com/2011/03/27/linktextviewwithkeybaord

IPhone / iPad / iPod touch / Mac アプリ開発にまつわる話. 画面上に UITextView がある場合、キーボードが競り上がったときに被ってしまう領域を考慮して UITextView を調節する必要があります。 に関連する Tips 第4段として、UITextView をキーボードと連携させる方法を紹介します。 では、UIScrollView の contentInset と scrollIndicatorInsets を調節することで、キーボードに隠れてしまう領域ができる問題を回避しました。 UITextView も UIScrollView のサブクラスなので同じ方法が使えそうですが、実は使えません。 8220;UITextView キーボード絡みの挙動 問題点”. で説明した通り、UITextView の contentInset.bottom はいろいろなタイミングで変わってしまうからです。 そこで、UITextView をキーボードに合わせて調節するときは、UITextView の frame を調節することにします。 Registered) { NSNotif...

2

キーボードに合わせて画面を上げ下げする | runLoop run];

https://runlooprun.wordpress.com/2011/03/21/linktextfieldwithkeyboard

IPhone / iPad / iPod touch / Mac アプリ開発にまつわる話. まずは、”Lorem ipsum” UITextView、”Name:” UILabel、UITextField を、UIScrollView に入れます。 キーボードが上がり下がりするタイミングは、UIKeyboardWillShowNotification と UIKeyboardWillHideNotification をオブザーブすることで知ることができます。 ビューコントローラの viwWillAppear: でオブザーブ開始、viewWillDisappear: でオブザーブ終了するとよいでしょう。 Void)viewWillAppear:(BOOL)animated { / super [super viewWillAppear:animated]; / Start observing if (! Observing) { NSNotificationCenter *center; center = [NSNotificationCenter defaultCenter]; [center addO...

3

UITextView をキーボードと連携させる – もともとの contentInset.bottom が 0 ではない場合 | runLoop run];

https://runlooprun.wordpress.com/2011/04/02/fixproblemofuitextview

IPhone / iPad / iPod touch / Mac アプリ開発にまつわる話. UITextView をキーボードと連携させる – もともとの contentInset.bottom が 0 ではない場合. 8220;UITextView キーボード絡みの挙動 問題点”. では、いろいろなタイミングで UITextView の contentInset.bottom が強制的に変わってしまうことを説明しました。 8220;UITextView をキーボードと連携させる”. では、UITextView のもともとの contentInset.bottom が 0 であれば、UITextView をキーボードと連携させることができることを説明しました。 今回は、UITextView のもともとの contentInset.bottom が 0 ではない場合、UITextView をどうやってキーボードと連携させるのかを紹介します。 UIEdgeInsets に関連する Tips 第5段です。 まず、 “UITextView キーボード絡みの挙動 問題点”. InitWithCoder: でも a...

4

UIScrollView を半透明なバーに適合させる | runLoop run];

https://runlooprun.wordpress.com/2011/03/05/adapttotranslucentbar

IPhone / iPad / iPod touch / Mac アプリ開発にまつわる話. 今回は、UIEdgeInsets に関連する Tips 第1段として、UIScrollView を半透明なバーに適合させる方法を紹介します。 図1 図2 は、StatusBar, NavigationBar, Toolbar すべてが Translucent Black に設定された画面です。 メインのビューは、Cell 0 Cell 19 を表示する UITableView です (UITableView は UIScrollView のサブクラスです)。 図1 は UITableView を一番上までスクロールした様子、 図2 は UITableView を一番下までスクロールした様子です。 図1 では、Toolbar が半透明なので、Cell 8, Cell 9 が透けて見えています。 ここで想像されるのは、UITableView の frame は、画面一番下にまで及んでいるということです。 ここで想像されるのは、UITableView の frame は、画面一番上にまで及んでいるということです。

5

Interaction Concept of Swiping to Go Back | runLoop run];

https://runlooprun.wordpress.com/2012/11/02/interaction-concept-of-swiping-to-go-back

IPhone / iPad / iPod touch / Mac アプリ開発にまつわる話. Interaction Concept of Swiping to Go Back. Interaction Concept of Swiping to Go Back. IPhone 5 was released on last summer. Some people were afraid that “My thumb reaches the top of the screen? 8221; Apple’s answer was the Ad “ Thumb. 8220;Your thumb, it goes from here, to here. This bigger screen goes from here, to here.”. Is there help for them? I and Satoshi Omiya. Thanks for your feedbacks. Satoshi Omiya’s post is here. 8221; という CM でした。 UITextView をキーボード...

UPGRADE TO PREMIUM TO VIEW 11 MORE

TOTAL PAGES IN THIS WEBSITE

16

LINKS TO THIS WEBSITE

blog.webtron.jp blog.webtron.jp

webtron weblog

http://blog.webtron.jp/archives/press-release

SpliTronが 2012年度 グッドデザイン賞 を受賞しました. Webtron Inc. 株式会社ウェブトロン では、このたび iPhone / iPod touch 向けアプリケーション SpliTron スプリットロン で 2012年度グッドデザイン賞 主催 公益財団法人日本デザイン振興会 を受賞いたしました。 提供する機能は人間中心設計 HCD 開発プロセスを通じて、割り勘タスクにおける利用状況の調査 把握に基づいた ユーザの困りごと を解決するソリューションとしてコンテクスチュアルに設計されています。 また UI ユーザインターフェイス にインタラクティブ要素を積極的に取り入れることで 機能性 に加え 使う楽しさ を提供し、UX ユーザーエクスペリエンス の質を高め、愛着をもって使ってもらえるようなアプリになるようにデザインされています。 と UI を含めた UX を高めるためのデザインが高く評価されました。 なお、SpliTron は11月23日 金 から東京ビッグサイトで開催される受賞発表展 グッドデザインエキシビション2012 に出展されます。

blog.webtron.jp blog.webtron.jp

webtron weblog : SpliTronが「2012年度 グッドデザイン賞」を受賞しました

http://blog.webtron.jp/archives/2012/10/000091.html

SpliTronが 2012年度 グッドデザイン賞 を受賞しました. Webtron Inc. 株式会社ウェブトロン では、このたび iPhone / iPod touch 向けアプリケーション SpliTron スプリットロン で 2012年度グッドデザイン賞 主催 公益財団法人日本デザイン振興会 を受賞いたしました。 提供する機能は人間中心設計 HCD 開発プロセスを通じて、割り勘タスクにおける利用状況の調査 把握に基づいた ユーザの困りごと を解決するソリューションとしてコンテクスチュアルに設計されています。 また UI ユーザインターフェイス にインタラクティブ要素を積極的に取り入れることで 機能性 に加え 使う楽しさ を提供し、UX ユーザーエクスペリエンス の質を高め、愛着をもって使ってもらえるようなアプリになるようにデザインされています。 と UI を含めた UX を高めるためのデザインが高く評価されました。 なお、SpliTron は11月23日 金 から東京ビッグサイトで開催される受賞発表展 グッドデザインエキシビション2012 に出展されます。

UPGRADE TO PREMIUM TO VIEW 7 MORE

TOTAL LINKS TO THIS WEBSITE

9

SOCIAL ENGAGEMENT



OTHER SITES

runlook.com runlook.com

runlook.com - Crazy Domains

Search and register domain names. World's cheapest domain names. 700 New generic domains. Move your domains to us FREE. Express cheap domain renewal. Get the domain name you want. Everything you need for your domains. Control your CNAME, MX and A records. Find who owns a particular domain. COM only $9.00 Get yours! Join The Domain Club. Fast, reliable space for your website. Defend your site against hackers. Secure your site and data. Get your own me@mydomain.com. Automatic Spam and Virus protection.

runlookup.com runlookup.com

runlookup.com - Crazy Domains

Search and register domain names. World's cheapest domain names. 700 New generic domains. Move your domains to us FREE. Express cheap domain renewal. Get the domain name you want. Everything you need for your domains. Control your CNAME, MX and A records. Find who owns a particular domain. COM only $9.00 Get yours! Join The Domain Club. Fast, reliable space for your website. Defend your site against hackers. Secure your site and data. Get your own me@mydomain.com. Automatic Spam and Virus protection.

runlookwrite.com runlookwrite.com

run. look. write. | chris masterman runs to write & writes about running

Run look. write. Chris masterman runs to write and writes about running. My List of Reasons to Run. So I haven’t run for over five months. Apparently starting a blog about running wasn’t enough to actually get me out running. Since I love lists, I thought maybe making a list of my reasons to run might help. Here it is in no particular order:. I want to be better able to focus, particularly on creative things like writing. I want to lessen my risk of heart attacks, strokes, and diabetes. March 25, 2015.

runloop.com runloop.com

Runloop - Great Fitness Apps

Runloop is a small development team based in the South of England that is focused on creating great fitness products and delivering outstanding support to our users. Seconds Pro is an interval timer app. For accurately timing interval, circuit and Tabata training. It can speak your exercise names and sync music to your intervals. Runloop is a one man. Development team based in the South of England, focused on making best in class fitness apps and delivering outstanding customer support.

runloop.net runloop.net

runloop

runlooprun.wordpress.com runlooprun.wordpress.com

runLoop run]; | iPhone / iPad / iPod touch / Mac アプリ開発にまつわる話

IPhone / iPad / iPod touch / Mac アプリ開発にまつわる話. REKit を CocoaPods で簡単インストール. 8220;インスタンス毎の動的メソッド実装 上書き機能を備えた REKit”. 今回、REKit を CocoaPods でインストールできるようにしたのは、 @dictav. この記事では、CocoaPods を使って REKit をインストール (Xcode プロジェクトに追加) する方法を紹介します。 最新情報は、 REKit on GitHub. REKit は、iOS, OS X の開発で使える NSObject の拡張コレクションです。 現時点では Blocks の潜在能力を引き出すような 2つ の機能を提供しています. REResponder: Block を使ったインスタンスの動的メソッド実装 上書き機能. REObserver: Block を使って KVO (Key-Value Observing) を実現する機能 α. ただそれだけなのですが、iOS, OS X の開発に大きな変化をもたらすと考えています。 今年 (2012年) の夏...

runloose.com runloose.com

runloose.com - runloose Resources and Information.

This page provided to the domain owner free. By Sedo's Domain Parking. Disclaimer: Domain owner and Sedo maintain no relationship with third party advertisers. Reference to any specific service or trade mark is not controlled by Sedo or domain owner and does not constitute or imply its association, endorsement or recommendation.

runlooselikemonkeys.com runlooselikemonkeys.com

run loose like monkeys

If you've ever wanted to see inside the mind of an accountant now's your chance. Monday, December 26, 2011. Catchy tune dark sentiment. Music may be the soundtrack to our lives but its also the soundtrack to our death, demise, and destruction as well. We are forever humming along with the dark lyriced songs. Don't believe me? All the other kids with the pumped up kicks. You'd better run, better run, outrun my gun. All the other kids with the pumped up kicks. Here are some others to ponder. American Expre...

runlordstown.com runlordstown.com

runlordstown

runlore.weebly.com runlore.weebly.com

Run Lore - A Blog for the Lesser Known Side of Running

THE BEST OR NOTHING. A U2 GUIDE TO RUNNING. THE DYNAMICS OF DRIFTING.

runloreerun.blogspot.com runloreerun.blogspot.com

Running in Place

Thursday, October 6, 2011. Monday, June 21, 2010. My Half Marathon Plan - Part 1. So, here's my plan:. M-walk .walked 3.4 miles outside. TU-x10 .done at 4.5 mph. W-walk .ran 12 minutes (no breaks) at 3.6 mph. TH-x10 .done at 4.5 mph. F-walk .walked 4 miles outside. SU-x10 .done at 4.5 mph and walked 3.5 miles. Summary of the week: the last 4 intervals are still HARD! The first minute seems to be OK, but the last is killer. Maybe I should run 3:1's but slower for the long runs. M-walk .4.o miles. For Thur...