0

目前我正在使用简单的 iphone 应用程序,获取当前设备区域以显示在文本字段中,当我更改区域应用程序运行时间时,按主页按钮应用程序进入后台进程,然后我选择任何区域,再次从后台打开应用程序该区域无法在该文本字段中更改,但导航另一个屏幕然后进入上一个屏幕区域已更改,但我不想导航到任何其他屏幕,区域自动更改,所以如何重新加载UIViewController,请任何人帮助我。

提前致谢

-(void)viewDidLoad
{

NSDecimalNumber *amountt = [NSDecimalNumber decimalNumberWithString:@"10.00"];
    NSNumberFormatter *currencyFormatt = [[NSNumberFormatter alloc] init];
    NSLocale *locale = [NSLocale currentLocale];
    [currencyFormatt setNumberStyle:NSNumberFormatterCurrencyStyle];
    [currencyFormatt setLocale:locale];

    NSString *symboll = [NSString stringWithFormat:@"%@",[currencyFormatt stringFromNumber:amountt]];
    NSString *getsymbol = [symboll stringByReplacingOccurrencesOfString:@"10.00" withString:@""];
    NSString *Getdollarsymbol = [getsymbol stringByReplacingOccurrencesOfString:@"10,00" withString:@""];
    NSLog(@"Getdollarsymbol:%@",Getdollarsymbol);

}
4

2 回答 2

0

您需要查看您的应用程序委托。你可以调用你的 UIViewController 从那里更新自己。

- (void)applicationDidBecomeActive:(UIApplication *)application
于 2012-07-19T14:35:32.237 回答
0

您可能还想收听关于

UIApplicationDidBecomeActiveNotification

通过 NSNotificationCenter,如果您的应用再次激活,将触发此通知。

于 2012-07-19T14:37:41.910 回答