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

  • Home
  • SEARCH
  • 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 6098159
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:07:34+00:00 2026-05-23T13:07:34+00:00

I am looking for a way on the iPhone, due to a custom ‘loading’

  • 0

I am looking for a way on the iPhone, due to a custom ‘loading’ subview, to have a subview cover the keyboard without dismissing the keyboard. Right now when the subview loads, the keyboard is still topmost. Any ideas?

  • 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-23T13:07:34+00:00Added an answer on May 23, 2026 at 1:07 pm

    add your loading view as subview on window. It will cover keyboard too. Here is a stackoverflow post for the same

    IPhone – Show Wait Indicator

    UPDATE

    My code

    #pragma mark -
    #pragma mark Waiting View
    - (void)showWaitingView {
    
        CGRect frame = CGRectMake(90, 190, 32, 32);
        UIActivityIndicatorView* progressInd = [[UIActivityIndicatorView alloc] initWithFrame:frame];
        [progressInd startAnimating];
        progressInd.activityIndicatorViewStyle = UIActivityIndicatorViewStyleWhiteLarge;
    
        frame = CGRectMake(130, 193, 140, 30);
        UILabel *waitingLable = [[UILabel alloc] initWithFrame:frame];
        waitingLable.text = @"Processing...";
        waitingLable.textColor = [UIColor whiteColor];
        waitingLable.font = [UIFont systemFontOfSize:20];;
        waitingLable.backgroundColor = [UIColor clearColor];
        frame = [[UIScreen mainScreen] applicationFrame];
        UIView *theView = [[UIView alloc] initWithFrame:frame];
        theView.backgroundColor = [UIColor blackColor];
        theView.alpha = 0.7;
        theView.tag = 999;
        [theView addSubview:progressInd];
        [theView addSubview:waitingLable];
    
        [progressInd release];
        [waitingLable release];
    
        [window addSubview:[theView autorelease]];
        [window bringSubviewToFront:theView];
    }
    
    - (void)removeWaitingView {
        UIView *v = [window viewWithTag:999];
        if(v) [v removeFromSuperview];
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We are looking for a way to timeout an iPhone application, and have tried
I am looking for a way to turn off the iPhone screen without the
I have been looking for a way to show the iPhone screen (not the
I am looking for a way to have an iPhone application run in the
I have been looking for a way to launch daemons on the iPhone and
I'm looking for a way to allow the user of my iPhone application to
Looking for the best way to set-up an iPhone project in XCode ... namely:
I'm looking for an easy way for users to download content from an iPhone
I'm looking for a way of to do a cross-browser iphone-like badge in CSS3.
I'm new to iPhone/iPad development. I'm looking for a way to visually groups some

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.