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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T15:09:54+00:00 2026-05-21T15:09:54+00:00

I have a modal view controller which fetches a password. Since I don’t want

  • 0

I have a modal view controller which fetches a password. Since I don’t want the password written to disk if my application is interrupted, I want to cear the password on applicationWillResignActive. (For those who may comment, I know the secure text field does not properly zeroize).

I’ve tried the following code, and my view controller is never located. For the first set of code (UIView) I believe its because I’m mixing and matching views and view controllers. I’m not sure why the second set of code (UIViewController) is not working since a few folks have suggested it.

How does one enumerate view controllers and locate a controller of interest? I simply want to send clearPassworAndPin to PasswordPromptController if present (since viewWillDisappear is not always sent when the view disappears).


Modified 7KV7 and Jhaliya answer is below (it worked). The ‘if’ statement using viewController.modalViewController was executed 5 times (once for each controller in the tab view). So the single modal controller of interest was sent the clearPasswords message 5 times.

for (UIViewController * viewController in viewsControllers)
{
    if ([viewController isKindOfClass:passwordPromptClass])
    {
        [(PasswordPromptController *)viewController clearPassworAndPin];
    }
    else
    {
        if(viewController.modalViewController)
            [self clearPasswords:[NSArray arrayWithObjects:viewController.modalViewController, nil]];
    }
}

Using UIViews (no joy)

- (void)applicationWillResignActive:(UIApplication *)application
{
  if(application.windows != nil)
    [self clearPasswords:application.windows];
}

- (void)clearPasswords:(NSArray *)subviews
{
  Class passwordPromptClass = [PasswordPromptController class];

  for (UIView * subview in subviews)
  {
    if ([subview isKindOfClass:passwordPromptClass])
      [(PasswordPromptController *)subview clearPassworAndPin];
  }
}

Using UIViewController (no joy)

- (void)applicationWillResignActive:(UIApplication *)application
{
  if(tabBarController.viewControllers != nil)
    [self clearPasswords:tabBarController.viewControllers];
}

- (void)clearPasswords:(NSArray *)viewsControllers
{
  Class passwordPromptClass = [PasswordPromptController class];

  for (UIViewController * viewController in viewsControllers)
  {
    if ([viewController isKindOfClass:passwordPromptClass])
      [(PasswordPromptController *)viewController clearPassworAndPin];
  }
}
  • 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-21T15:09:55+00:00Added an answer on May 21, 2026 at 3:09 pm
    NSArray *array = [self.navigationController viewControllers];
    yourViewController = [array objectAtIndex:yourChoiceOfIndex];
    

    Hope it helps.

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

Sidebar

Related Questions

I have a view controller which presents a modal view when a certain button
I have a UIViewController which presents a modal view controller and when I rotate
I have two View Controllers: TableViewController (which is used as a modal view controller)
I have a modal view controller whose view comes from a XIB. I want
Hello I have in my app a modal view controller which when a certain
I have a modal view controller which has only a Webview in it. In
I have a view which is presented as a modal view controller which takes
I have a modal view controller which is crashing when it dismisses itself. The
I am trying to present a modal view controller. I have read the documentation,
I have a simple project to present a modal view controller and transfer back

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.