Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

StoryBoard #132

Closed
Closed
@MrReN

Description

@MrReN

Please add

 -(id)initWithCoder:(NSCoder *)aDecoder{
    if (!(self = [super initWithCoder:aDecoder]))
        return nil;

    _rangeController = [[ASRangeController alloc] init];
    _rangeController.delegate = self;

    return self;
}

because the code doesn't suppose storyboard,isn't it?

Activity

secretiverhyme

secretiverhyme commented on Dec 3, 2014

@secretiverhyme
Contributor

Storyboards are a useful prototyping tool, but they're bad for performance — especially when paired with Auto Layout — and they add substantial long-term debugging and development costs. AsyncDisplayKit intentionally doesn't support them. (You could make ASTableView work with Interface Builder by implementing -initWithCoder:, but you'd still have to create and configure its cell nodes in code.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @secretiverhyme@MrReN

        Issue actions

          StoryBoard · Issue #132 · facebookarchive/AsyncDisplayKit