Skip to content
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" => "kyle.shank@gmail.com" }
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