Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
Material
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dmitriy Stepanets
Material
Commits
d5d5e751
Commit
d5d5e751
authored
Aug 16, 2017
by
Daniel Dahan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated TextFieldDelegate parameters
parent
8caf7fb1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
Sources/iOS/TextField.swift
+6
-6
No files found.
Sources/iOS/TextField.swift
View file @
d5d5e751
...
@@ -40,27 +40,27 @@ public enum TextFieldPlaceholderAnimation: Int {
...
@@ -40,27 +40,27 @@ public enum TextFieldPlaceholderAnimation: Int {
public
protocol
TextFieldDelegate
:
UITextFieldDelegate
{
public
protocol
TextFieldDelegate
:
UITextFieldDelegate
{
/**
/**
A delegation method that is executed when the textField changed.
A delegation method that is executed when the textField changed.
- Parameter textField: A
UI
TextField.
- Parameter textField: A TextField.
- Parameter didChange text: An optional String.
- Parameter didChange text: An optional String.
*/
*/
@objc
@objc
optional
func
textField
(
textField
:
UI
TextField
,
didChange
text
:
String
?)
optional
func
textField
(
textField
:
TextField
,
didChange
text
:
String
?)
/**
/**
A delegation method that is executed when the textField will clear.
A delegation method that is executed when the textField will clear.
- Parameter textField: A
UI
TextField.
- Parameter textField: A TextField.
- Parameter willClear text: An optional String.
- Parameter willClear text: An optional String.
*/
*/
@objc
@objc
optional
func
textField
(
textField
:
UI
TextField
,
willClear
text
:
String
?)
optional
func
textField
(
textField
:
TextField
,
willClear
text
:
String
?)
/**
/**
A delegation method that is executed when the textField is cleared.
A delegation method that is executed when the textField is cleared.
- Parameter textField: A
UI
TextField.
- Parameter textField: A TextField.
- Parameter didClear text: An optional String.
- Parameter didClear text: An optional String.
*/
*/
@objc
@objc
optional
func
textField
(
textField
:
UI
TextField
,
didClear
text
:
String
?)
optional
func
textField
(
textField
:
TextField
,
didClear
text
:
String
?)
}
}
open
class
TextField
:
UITextField
{
open
class
TextField
:
UITextField
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment