Code Monkey home page Code Monkey logo

elctextfieldcell's Introduction

****** HOW TO USE ******

This UITableViewCell subclass is most commonly used for the creation of forms. There is a leftLabel and a rightTextField in each cell. You should configure the labels text and the textfields placeholder appropriately. The cell defines a protocol called ELCTextFieldDelegate which has 6 optional methods. 

The two most used are:

//Called to the delegate whenever the text in the rightTextField is changed
- (void)textFieldCell:(ELCTextFieldCell *)inCell updateTextLabelAtIndexPath:(NSIndexPath *)inIndexPath string:(NSString *)inValue;

//Called to the delegate whenever return is hit when a user is typing into the rightTextField of an ELCTextFieldCell
- (BOOL)textFieldCell:(ELCTextFieldCell *)inCell shouldReturnForIndexPath:(NSIndexPath*)inIndexPath withValue:(NSString *)inValue;

The other four just forward on the UITextFieldDelegate methods, if the ELCTextFieldCellDelegate implements them.
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField;
- (BOOL)textFieldShouldEndEditing:(UITextField *)textField;
- (void)textFieldDidBeginEditing:(UITextField *)textField;
- (void)textFieldDidEndEditing:(UITextField *)textField;

************************

The MIT License

Copyright (c) 2012 ELC Technologies

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

elctextfieldcell's People

Contributors

cruffenach avatar jivadevoe avatar sonnyfazio avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

elctextfieldcell's Issues

needs methods textFieldDidBeginEditing and textFieldDidEndEditing

to make it work like regular text fields, something like:-

  • (void)textFieldDidBeginEditing:(UITextField *)textField {

    if([delegate respondsToSelector:@selector(textFieldDidBeginEditing:)]) {

    [delegate performSelector:@selector(textFieldDidBeginEditing:) withObject:indexPath];
    

    }

    return;
    }

  • (void)textFieldDidEndEditing:(UITextField *)textField {

    if([delegate respondsToSelector:@selector(textFieldDidEndEditing:)]) {

    [delegate performSelector:@selector(textFieldDidEndEditing:) withObject:indexPath];
    

    }

    return;
    }

ps: This is a very useful tool for working with simple forms & it's much easier to implement than some of the bigger options.

Font doesn't match

This will make the font match Apple's UIKit:

--- a/Classes/ELCTextFieldCell.m
+++ b/Classes/ELCTextFieldCell.m
@@ -39,15 +39,16 @@

                self.leftLabel = [[UILabel alloc] initWithFrame:CGRectZero];
                [_leftLabel setBackgroundColor:[UIColor clearColor]];
-               [_leftLabel setTextColor:[UIColor colorWithRed:.285 green:.376 blue:.541 alpha:1]];
-               [_leftLabel setFont:[UIFont fontWithName:@"Helvetica" size:17]];
-               [_leftLabel setTextAlignment:NSTextAlignmentCenter];
+               [_leftLabel setTextAlignment:NSTextAlignmentRight];
+               self.leftLabel.font = self.textLabel.font;
+               self.leftLabel.textColor = self.textLabel.textColor;
                [self addSubview:_leftLabel];

                self.rightTextField = [[ELCInsetTextField alloc] initWithFrame:CGRectZero];
                _rightTextField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
                [_rightTextField setDelegate:self];
-               [_rightTextField setFont:[UIFont systemFontOfSize:17]];
+               self.rightTextField.font = self.detailTextLabel.font;
+               self.rightTextField.textColor = self.detailTextLabel.textColor;


--- a/Classes/RootViewController.m
+++ b/Classes/RootViewController.m
@@ -104,10 +104,17 @@

     ELCTextFieldCell *cell = (ELCTextFieldCell*)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
     if (cell == nil) {
-        cell = [[ELCTextFieldCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdenti
+        cell = [[ELCTextFieldCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:CellIdentif
     }

iOS 14

To fix this for iOS 14, change
[self addSubview:_rightTextField];

to:
[self.contentView addSubview:_rightTextField];

Looks bad in iOS7

In the demo, if I add

    if (indexPath.row == 3) {
        UITableViewCell *cell2 = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:@"ttt"];
        cell2.textLabel.text = @"hello";
        cell2.detailTextLabel.text= @"world";
        return cell2;
    }

It looks like this:

ios simulator screen shot nov 7 2013 6 34 46 pm

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.