Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed attributedText and attributedPlaceholder in ASTextFieldNode h… #1

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ASTextFieldNode.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "ASTextFieldNode"
s.version = "0.2.1"
s.version = "0.2.2"
s.summary = "UITextField wrapper for AsyncDisplayKit."
s.description = <<-DESC
UITextField wrapper for AsyncDisplayKit that can handle secure text entry. Alternative to ASEditableTextNode.
Expand All @@ -11,5 +11,5 @@ Pod::Spec.new do |s|
s.author = { "Kyle Shank" => "[email protected]" }
s.source = { :git => "https://github.com/pocketlabs/ASTextFieldNode.git", :tag => "#{s.version}" }
s.source_files = "ASTextFieldNode", "ASTextFieldNode/*.{h,mm}"
s.dependency "AsyncDisplayKit", "~> 2.1.0"
s.dependency "AsyncDisplayKit", "~> 2.2"
end
4 changes: 2 additions & 2 deletions ASTextFieldNode/ASTextFieldNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ FOUNDATION_EXPORT const unsigned char ASTextFieldNodeVersionString[];
@property (nonatomic, retain) ASTextFieldView* textField;

@property (nonatomic, assign) NSString* text;
@property (nonatomic, assign) NSString* attributedText;
@property (nonatomic, assign) NSString* attributedPlaceholder;
@property (nonatomic, assign) NSAttributedString* attributedText;
@property (nonatomic, assign) NSAttributedString* attributedPlaceholder;
@property (nonatomic, assign) UIFont* font;
@property (nonatomic, assign) UIColor* textColor;

Expand Down