Skip to content
Smooth asynchronous user interfaces for iOS apps.
Branch: master
Clone or download
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Delete GITHUB_RULES.md Apr 14, 2017
AsyncDisplayKit.xcodeproj Add a new "global drawing" experiment to use UIGraphicsRenderer (#1469) May 3, 2019
AsyncDisplayKit.xcworkspace Check in Xcode 9.3 "workspace checks" file (#868) Apr 4, 2018
CI BuildKite to ignore all markdown files (#517) Aug 17, 2017
InstrumentsTemplates Improve System Trace Implementation #trivial (#368) Jun 19, 2017
Schemas Ship ASExperimentalFixRangeController (#1486) May 7, 2019
Source Reclaim pending display nodes memory once the subtree is finished dra… May 10, 2019
SubspecWorkspaces/ASDKListKit [License] Simplify the Texture license to be pure Apache 2 (removing … Aug 28, 2018
Tests Ship ASExperimentalFixRangeController (#1486) May 7, 2019
buck-files Support Buck build (#2849) Jan 4, 2017
docs Clean up documentation issues around periods (#1490) May 6, 2019
examples Shut down graphics contexts experiment (#1458) Apr 19, 2019
examples_extra Migrate placeholder example project from 1.0 to 2.x (#1164) Oct 17, 2018
plans/LayoutDebugger Layout debugger proposal (#52) Apr 22, 2017
smoke-tests [License] Simplify the Texture license to be pure Apache 2 (removing … Aug 28, 2018
.buckconfig Support Buck build (#2849) Jan 4, 2017
.buckversion Buck: use snapshot_reference_images_path instead of copying images to… Jan 20, 2017
.clang-format Add clang-format for a common source code format (#1365) Mar 16, 2019
.editorconfig Add .editorconfig Apr 29, 2016
.github_changelog_generator Cut version 2.8.1 (#1491) May 6, 2019
.gitignore Pin OCMock version to 3.4.1 because 3.4.2 has issues (#1038) Jul 18, 2018
.slather.yml [.slather.yml] Add newline to end of file Apr 21, 2015
.travis.yml IGListKit Support II: Electric Boogaloo (#2942) Jan 30, 2017
BUCK Turn off exceptions to reduce binary size (-600KB for arm64) (#1033) Jul 16, 2018
CHANGELOG.md Minor update in change log #changelog (#1492) May 6, 2019
CONTRIBUTING.md [License] Simplify the Texture license to be pure Apache 2 (removing … Aug 28, 2018
Cartfile Don't return non-animated GIFs for animation (update to latest PINRem… Feb 21, 2019
Dangerfile Cleanup Dangerfile (#1212) Nov 5, 2018
Gemfile Add danger-slack Apr 26, 2017
LICENSE [License] Simplify the Texture license to be pure Apache 2 (removing … Aug 28, 2018
Podfile Don't return non-animated GIFs for animation (update to latest PINRem… Feb 21, 2019
Podfile.lock Experiment with different strategies for image downloader priority (#… Mar 8, 2019
README.md Fix wrongly formatted RELEASE link (#1453) Apr 15, 2019
RELEASE.md Cut version 2.8 #changelog (#1340) Feb 14, 2019
Texture.podspec Cut version 2.8.1 (#1491) May 6, 2019
build.sh Update for 9.4.1 CI (#1392) Mar 11, 2019
format Add clang-format for a common source code format (#1365) Mar 16, 2019
run_tests_update_status.sh Add danger (#18) Apr 19, 2017

README.md

Coming from AsyncDisplayKit? Learn more here

Texture

Apps Using Downloads

Platform Languages

Version Carthage compatible License

Installation

Texture is available via CocoaPods or Carthage. See our Installation guide for instructions.

Performance Gains

Texture's basic unit is the node. An ASDisplayNode is an abstraction over UIView, which in turn is an abstraction over CALayer. Unlike views, which can only be used on the main thread, nodes are thread-safe: you can instantiate and configure entire hierarchies of them in parallel on background threads.

To keep its user interface smooth and responsive, your app should render at 60 frames per second — the gold standard on iOS. This means the main thread has one-sixtieth of a second to push each frame. That's 16 milliseconds to execute all layout and drawing code! And because of system overhead, your code usually has less than ten milliseconds to run before it causes a frame drop.

Texture lets you move image decoding, text sizing and rendering, layout, and other expensive UI operations off the main thread, to keep the main thread available to respond to user interaction.

Advanced Developer Features

As the framework has grown, many features have been added that can save developers tons of time by eliminating common boilerplate style structures common in modern iOS apps. If you've ever dealt with cell reuse bugs, tried to performantly preload data for a page or scroll style interface or even just tried to keep your app from dropping too many frames you can benefit from integrating Texture.

Learn More

Getting Help

We use Slack for real-time debugging, community updates, and general talk about Texture. Signup yourself or email textureframework@gmail.com to get an invite.

Release process

For the release process see the RELEASE file.

Contributing

We welcome any contributions. See the CONTRIBUTING file for how to get involved.

License

The Texture project is available for free use, as described by the LICENSE (Apache 2.0).

You can’t perform that action at this time.