Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8534247
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T10:09:00+00:00 2026-06-11T10:09:00+00:00

This may seem like a very simple question, however I haven’t been able to

  • 0

This may seem like a very simple question, however I haven’t been able to discover a simple option yet…

I have a series of UITextFields followed by a UITextView. How can I incorporated the TextFields and the TextView in the same method below.

-(BOOL) textFieldDidBeginEditing:(UITextField *) textField{
textField = activeField;
if([self.textField1 isFirstResponder]){activeField = textField1;}
else if([self.textField2 isFirstResponder]){activeField = textField2;}
else if([self.textField3 isFirstResponder]){activeField = textField3;}
else if([self.textView1 isFirstResponder]){ activeField = textView1;}

[scrollView1 scrollRectToVisible:[activeField frame] animated:YES];

return NO;
}

The last line causes a warning of:

Incompatible pointer types assigning to ‘UITextField *_strong’ from ‘UITextView *_strong’

This is due (I’m sure) to the obvious fact that the UITextField and the UITextView are different Objects… which is fine however is there a way to get around this as I wish to be able to advance through the textFields and TextViews with a next and previous button.

as per this method

-(void) nextTextField:(id)sender{
if([self.textField1 isFirstResponder]){activeField = textField2;}
else if([self.textField2 isFirstResponder]){activeField = textField3;}
else if([self.textField3 isFirstResponder]){activeField = textView1;}
else if([self.textView1 isFirstResponder]){ activeField = textField1;}
}

I was hoping for a casting sort of option however I am a little confused as to how to cast in objective C… This might sound dumb however

activeField = ((UITextField) textView1);

is how I’d have cast in Java but it seems I just can’t seem to get he syntax right.
Should I cast to a UIView as they both inherit from that?

Thank you in advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T10:09:01+00:00Added an answer on June 11, 2026 at 10:09 am

    Okay, so you don’t need to store activeField, for this method, so the only relevant code would be your nextTextField: method. Try changing it to:

    -(void) nextTextField:(id)sender{
              if([self.textField1 isFirstResponder]) {[textField2 becomeFirstResponder];}
         else if([self.textField2 isFirstResponder]) {[textField3 becomeFirstResponder];}
         else if([self.textField3 isFirstResponder]) {[textView1  becomeFirstResponder];}
         else if([self.textView1 isFirstResponder])  {[textField1 becomeFirstResponder];}
    }
    

    You don’t need to cast to a different type or anything.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This may seem like a very simple question, but I have been struggling with
this may seem like a very simple question, but I want to dump some
This may seem like a very basic question, but its been in my head
This may seem like an absurd question, however thought I best double check beforehand.
This may seem like a simple question but i am getting an error when
This seems to me like a very simple question, but I can't seem to
This may seem like a very basic question but I did not seem to
This may seem like a simple and straightforward question and it probably has a
this may seem like a simple problem but I couldn't find it in the
This may seem like a stupid question, but what message do i send to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.