Introducing Sessions: the latest product from Waldo!
Introducing Sessions: the latest product from Waldo!
Stay ahead of the curve and become a better interface designer. With a Pttrns membership, gain access to thousands of curated mobile design patterns, get online advice, and connect with other designers from all over the world. What you get UX and UI Patterns Learn and follow industry best practices that can be applied to your app to help ensure the best user experience possible. App database Save
慣れない街へ出かけるとき、電車の中で目的地までの道のりを「地図アプリ」で検索しておいて、駅を出てから地図を見て移動したことはありますか。あるいは「ネットショッピングアプリ」で欲しいものが見つかって、衝動買いするにはちょっと高価だったときに、レビューを読んだりネット上での評判を確かめたりしたことはありませんか。もしそんなとき、地図アプリやネットショッピングアプリを離れて他のことをして、また戻ってきたときに、そのアプリは元の画面のままですか。それともアプリの最初の画面に戻ってしまっていますか。 iOS の State Restoration という機能は、アプリを元の状態に復元するための仕組みを提供します。メモリが不足してバックグラウンドのアプリが終了した後、次に起動したときに、アプリを元の状態に戻すことができます。地図で見つけた道順や、検討中の商品、または入力中のメッセージや、さっき見ていた
There are two common ways of adding new features to UIViews: composition and subclassing. Today I'd like to focus on a third, less known, but often a more fitting approach: extensions (or categories in Objective-C). I don't want to bore you, so I thought that we could discuss this topic while making something useful at the same time. We'll build an extension that animates dots in an ellipsis displ
Today’s Swift topic is on Closures. Heading back to my C and C++ days, I would define a closure as a function pointer… Swift is a powerful language; it’s really hard to cover all the good parts in a few articles. I’ll try to give a jump start with the areas that I find particularly useful. Today we are going to cover Capturing Values, Nonescaping Closures, and Autoclosures. Let’s rock! Capturing V
Yari D'areglia Senior iOS developer @ Neato Robotics by day, game developer and wannabe artist @ Black Robot Games by night. Follow @bitwaker I badly wanted to write a generic article about Apple Watch development because I really needed to resume what I’ve learned so far. That being said, in this article you’ll read an overview that might be really useful if you are starting with Apple Watch deve
テストの書き方、Quickの使い方 February 9, 2016 最近XCTestを担当しているアップル社員と話す機会によく恵まれています。その方々が言うには、Xcode/XCTestの担当部署の任務は「テストを書く習慣を広め、App Storeにあるアプリの品質向上に貢献する」そうです。 私は数年Kiwi、Specta、Quickのようなテスト・ツールを開発して、メンテしています。そしてここ数年ずっと思っているのが、実は役に立つテストを書くのは非常に簡単で、XCTestでもQuickでも大した違いがない、ということです。 ところが、いいテストを書くのが簡単でも、書き方を説明するドキュメントが意外と少なかったり、古かったりします。そこで去年QuickのDocumentationディレクトリにチュートリアルを置くようにしました。 チュートリアルは英語で書かれていますが、今年はそのチュート
UIStoryboardからViewControllerをロードするときにenumとprotocolとextensionを使ってカッコよくやる方法iOSSwift let name = "Main" let identifier = "ArticleViewController" let storyboard = UIStoryboard(name: name, bundle: nil) let viewController = storyboard.instantiateViewControllerWithIdentifier(identifier) as! ArticleViewController
Realm Objective-C および Realm Swift 0.98をリリースしました。 このバージョンにはコレクションの変更に対する通知、非同期クエリ、サブクエリ、インデックスとパフォーマンスの改善、不具合の修正などが含まれます。 コレクションの変更に対する通知 コレクションオブジェクトが変更されるたびに呼ばれる通知ブロックを addNotificationBlock メソッドを用いて登録できるようなりました。 コレクションインスタンスに対して通知を登録すると、非同期にクエリを実行し、結果を取得したらブロックを呼び出します。その後、結果に影響のあるトランザクションがコミットされるたびに通知ブロックを呼びます。 // RLMResultsの通知を監視します self . token = [[ Person objectsWhere : @"age > 5" ] addNotific
Written by Nate Cook March 16th, 2015 This article has been translated into: 中文 Dates. More than any other data type, the gulf between the initial banality of dates and their true, multifaceted complexity looms terrifyingly large. Combining sub-second precision, overlapping units, geopolitical time zone boundaries, localization differences in both language and grammar, and Daylight Saving shifts a
9. NSURLSessionクラス オブジェクトの生成 • • • + sessionWithConfiguration: + sessionWithConfiguration:delegate:delegateQueue: + sharedSession デリゲートとデリゲートキュー • • デリゲートはなくてもOKとなっている デリゲートキューにnilを指定するとシステムが与える NSURLSessionタスクの生成 • • • • • 13年10月18日金曜日 タスクのタイプに応じて多数のメソッドが定義されている 生成されるのは、NSURLSessionDataTask、 NSURLSessionDownloadTask、NSURLSessionUplodadTaskのいずれか NSURL、あるいはNSURLRequestを通信先で指定する Completion Handler(通信後
unit and acceptance testing, automation, productivity In the previous two posts of the Practical Testing in Swift series we had a look at how to test asynchronous code using XCTest, both when dealing with callbacks and delegates. In this post we'll see how to do that using Quick and Nimble, a pair of Swift testing frameworks. In case you are not familiar with them, let me introduce these two frame
For a better reading experience, you can also find this post at https://gonzalezreal.github.io/2015/12/31/ios-cell-registration-reusing-with-swift-protocol-extensions-and-generics.html. A common task when developing iOS apps is to register custom cell subclasses for both UITableView and UICollectionView. Well, that is if you don’t use Storyboards, of course. Both UITableView and UICollectionView o
A couple weeks ago I came across a great post on by Guille Gonzalez for which he had devised a way to make UITableViewCell registration and reuse to be much safer with protocols and extensions. I saw this post and was in absolute awe about how simple and easy it was to implement custom behaviour with protocol extensions and generics without having to rely on inheritance. Ever since WWDC15, we’ve b
Written by Mattt February 17th, 2014 This article has been translated into: français and 中文 If you could blow up the world with the flick of a switch Would you do it? If you could make everybody poor just so you could be rich Would you do it? If you could watch everybody work while you just lay on your back Would you do it? If you could take all the love without giving any back Would you do it? An
Introduction to Custom View Controller Transitions and Animations Jayven Nhan Looking at the built in apps from Apple on your iOS device, you will notice the various animated transitions as you move from one view to another for example the way view controllers are presented in master-detail views with a swipe that slides the detail view controller over the master view controller as seen in the Mes
https://creativesdk.adobe.com/ 今まで散々様々なSDKを使ってきましたが、正直感動しました。 こんな簡単に超リッチな画像加工ができるなんて本当にすごいです。 しかも 実装方法が超かんたん。 まずは少しみてください。 一部機能の紹介 画像のフィルター フィルターの種類も豊富で、お手軽にインスタグラムっぽい画像を作れちゃいます 画像の切り抜き 画像の方向変換 文字入力 指定した色だけ色を出したり ほら、やばい 実装方法 swiftで書きますので、objective-cの方は適時読み替えてください。 一応今回のサンプルコードもgithubにアップしておきます。 https://github.com/yamasakitomohiro/AdobeCreativeSample SDKのダウンロード 以下のリンク作からiOS SDKをダウンロードしてください。 https:
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く