制作多视图应用程序的有效方法?

发布于 2024-12-02 11:21:02 字数 2124 浏览 1 评论 0原文

我正在制作的应用程序利用多个视图。例如免责声明视图、显示答案的视图等等。到目前为止,这是我一直用来从一个视图切换到另一个视图的代码,

-(IBAction)swichtogain:(id)sender{
    gainview *second = [[gainview alloc]initWithNibName:nil bundle:nil];
    [self presentModalViewController:second animated:YES];
    [second release];
}

我在教程中发现了这个方法,我想知道,是这是最好的方法吗?我使用相同的代码从一个视图来回切换到另一个视图,例如。

  -(IBAction)swichtoview1:(id)sender{
        view1 *view = [[gainview alloc]initWithNibName:nil bundle:nil];
        [self presentModalViewController:view animated:YES];
        [view release];
    }

当在 view1 中时,如果用户点击后退按钮,则会执行以下代码

  -(IBAction)swichtomainview:(id)sender{

       mainview *view = [[gainview alloc]initWithNibName:nil bundle:nil];
        [self presentModalViewController:view animated:YES];
        [view release];
    }

,我没有在 appdelegate 文件中编辑任何内容,这是一个基于视图的应用程序。这种方法会导致它使用更多内存吗?在使用仪器进行活动监视器测试期间,我注意到每次从主菜单转到另一个视图并返回主菜单时,内存使用量都会变高!还有比这更好的方法吗?另外一个视图是计算器,因此当用户点击计算按钮时,它会切换到下一个视图,同时将文本字段更改为答案,下面是代码!

-(IBAction)calculate{
    MyClass *setnum = [[MyClass alloc]init];
    setnum.grade_num = grade;
    setnum.stage_num = stage;
    setnum.ex_lym = ex_ly;
    setnum.pos_lym = pos_ly;
    setnum.er_num = er;
    setnum.noderatio = pos_ly/ex_ly;



    if(text1.text.length <=0 ||text2.text.length <=0||text3.text.length<=0||text4.text.length<=0||text5.text.length <=0){

        UIActionSheet *action = [[UIActionSheet alloc]initWithTitle:@"Incomplete Values" delegate:self cancelButtonTitle:@"Ok" destructiveButtonTitle:nil otherButtonTitles:nil];    
        [action showInView:self.view];
        [action release];

    }else{
        answer *ans =[[answer alloc]initWithNibName:nil bundle:nil];
        [self presentModalViewController:ans animated:YES];

      float i =   calc_gain(setnum.grade_num, setnum.noderatio, setnum.stage_num, setnum.er_num);  
        NSString *result = [NSString stringWithFormat:@"%f",i];

        ans.answer1.text = result;
        ans.bar.hidden = NO;



        [ans release];
    }
    [setnum release];

}

The app I'm making utilizes multiple views. such as a disclaimer view, a view to display answer so on and so forth.Up until now this is the code that I've been using to switch from one view to another

-(IBAction)swichtogain:(id)sender{
    gainview *second = [[gainview alloc]initWithNibName:nil bundle:nil];
    [self presentModalViewController:second animated:YES];
    [second release];
}

I found this method in a tutorial, I was wondering, is this the best way to do it ? I use the same code to switch back n forth from one view to another for eg.

  -(IBAction)swichtoview1:(id)sender{
        view1 *view = [[gainview alloc]initWithNibName:nil bundle:nil];
        [self presentModalViewController:view animated:YES];
        [view release];
    }

and when in view1 if the user hits the back button the following code gets executed

  -(IBAction)swichtomainview:(id)sender{

       mainview *view = [[gainview alloc]initWithNibName:nil bundle:nil];
        [self presentModalViewController:view animated:YES];
        [view release];
    }

I haven't edited anything in the appdelegate files and this is a view based app. Does this method cause it to use more memory ? During the activity monitor test using the instruments , I noticed the memory usage gets higher every time I go from the main menu to another view and back to the main menu !. Is there a better way than this ?. Also one of the view is a calculator so when the user hits the calculate button it switches to the next view while changing the textfield to the answer, below is the code for that !

-(IBAction)calculate{
    MyClass *setnum = [[MyClass alloc]init];
    setnum.grade_num = grade;
    setnum.stage_num = stage;
    setnum.ex_lym = ex_ly;
    setnum.pos_lym = pos_ly;
    setnum.er_num = er;
    setnum.noderatio = pos_ly/ex_ly;



    if(text1.text.length <=0 ||text2.text.length <=0||text3.text.length<=0||text4.text.length<=0||text5.text.length <=0){

        UIActionSheet *action = [[UIActionSheet alloc]initWithTitle:@"Incomplete Values" delegate:self cancelButtonTitle:@"Ok" destructiveButtonTitle:nil otherButtonTitles:nil];    
        [action showInView:self.view];
        [action release];

    }else{
        answer *ans =[[answer alloc]initWithNibName:nil bundle:nil];
        [self presentModalViewController:ans animated:YES];

      float i =   calc_gain(setnum.grade_num, setnum.noderatio, setnum.stage_num, setnum.er_num);  
        NSString *result = [NSString stringWithFormat:@"%f",i];

        ans.answer1.text = result;
        ans.bar.hidden = NO;



        [ans release];
    }
    [setnum release];

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

☆獨立☆ 2024-12-09 11:21:02

您应该考虑使用提供的容器视图控制器之一(iPad 上的 UITabBarController、UINavigationBarController 或 UISplitViewController 等)。

您使用presentModalViewController 的方式很可能是错误的方式。其一,调用presentModalViewController 将保留您的视图。因此,不断分配新的控制器并通过presentModalView显示它们的视图会增加每个导航步骤的内存占用。

一般来说,显示另一个模态视图控制器的视图控制器也负责再次将其关闭。因此,关闭模态视图控制器的方法是让呈现的控制器通过委托通知其父级,并要求父级关闭(通常在点击“完成”按钮时)。

我什至不确定堆叠 modalViewControllers 是否是受支持的方案,但至少在 文档

You should consider using one of the provided container view controllers (UITabBarController, UINavigationBarController or UISplitViewController on the iPad and so on).

The way you use presentModalViewController is most likely the wrong way. For one, calling presentModalViewController will retain your views. Keeping allocating new controllers and displaying their views via presentModalView is therefore increasing your memory footprint with each navigation step.

In general, a viewcontroller which shows another modal viewcontroller is also responsible for dismissing it again. The way to dismiss a modal view controller is therefore to let the presented controller inform its parent through delegation and ask the parent to dismiss (often on tapping a 'done' button).

I'm not even sure whether stacking modalViewControllers is a supported scenario, but at least didn't find anything stated otherwise in the documentation.

聊慰 2024-12-09 11:21:02

昨天在这里问:

切换 iphone 应用程序的视图 - 是这个正确的方法?

我认为另一个好方法是添加一个 univanigationcontroller:

[self.navigationController pushViewController:second animated:YES];

Asked here yesterday:

Switching views for iphone application - is this the right way?

I think another good way to go about this is to do this and add a univanigationcontroller:

[self.navigationController pushViewController:second animated:YES];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文