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 4094592
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T19:45:52+00:00 2026-05-20T19:45:52+00:00

when I press on it I can change position freely in View -(IBAction) add

  • 0

when I press on it I can change position freely in View

-(IBAction) add :(id)sender {

CGRect frame = CGRectMake(kLeftMargin, 8.0, kTextFieldWidth, kTextFieldHeight);

UITextField * textfieldToAdd = [[[UITextField alloc] initWithFrame:frame] autorelease];






        textfieldToAdd.borderStyle =  UITextBorderStyleRoundedRect; 
        textfieldToAdd.textColor = [UIColor blackColor];

        textfieldToAdd.font = [UIFont systemFontOfSize:17.0];
        textfieldToAdd.placeholder = @"";
        textfieldToAdd.backgroundColor = [UIColor whiteColor];
        textfieldToAdd.autocorrectionType = UITextAutocorrectionTypeNo ; // no auto correction support

        textfieldToAdd.keyboardType = UIKeyboardTypeDefault;   // use the default type input method (entire keyboard)
        textfieldToAdd.returnKeyType = UIReturnKeyDone;

        textfieldToAdd.clearButtonMode = UITextFieldViewModeWhileEditing;  // has a clear 'x' button to the right

        textfieldToAdd.tag = kViewTag;     // tag this control so we can remove it later for recycled cells

        textfieldToAdd.delegate = self;    // let us be the delegate so we know when the keyboard's "Done" button is pressed

        // Add an accessibility label that describes what the text field is for.
        [textfieldToAdd setAccessibilityLabel:NSLocalizedString(@"textfieldToAdd", @"")];



[self.view addSubview:textfieldToAdd];

}

  • 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-05-20T19:45:52+00:00Added an answer on May 20, 2026 at 7:45 pm

    First add the gestureRecognizer to your ViewDidLoad and then create the function
    or better look here MoveME example

    UIPanGestureRecognizer *panGesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(panPiece:)];
    [panGesture setMaximumNumberOfTouches:2];
    [panGesture setDelegate:self];
    [self addGestureRecognizer:panGesture];
    
    - (void)panPiece:(UIPanGestureRecognizer *)gestureRecognizer
    {
        if ([gestureRecognizer state] == UIGestureRecognizerStateBegan || [gestureRecognizer     state] == UIGestureRecognizerStateChanged) {
            CGPoint translation = [gestureRecognizer translationInView:self.view];
            textfieldToAdd.center = CGPointMake([self center].x + translation.x, [self center].y + translation.y);
            [gestureRecognizer setTranslation:CGPointZero inView:[self superview]];
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I flip an NSWindow so I can press a button, and the
I know that you can press shift+alt+j to insert an appropriate comment template for
How can you do a Press Enter to Continue in C?
I can't figure out how to capture the Delete key press. I found out
What win32 calls can be used to detect key press events globally (not just
Can I create a javascript variable and increment that variable when I press a
How can I return List<personel> data type from below procedure. If I press F5
If I start typing stackov.. in Chrome I can see something like 'Press Tab
I am following a guide where it says to press cmd+shift+i to change an
Is it possible to change a frame label within a gotoAndStop('label') with the parameters

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.