• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - iOS项目初始化项目中所需的所有UIViewController和UIView是一个好习惯吗?

[复制链接]
菜鸟教程小白 发表于 2022-12-12 22:10:07 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我见过一个基于角色的 iOS 项目,其中作者在应用程序启动时启动了几乎所有的 View 和 Controller 。它主要使用 NSNotification 进行它们之间的通信。甚至 NSNotification 也是同一种类型,这意味着所有通知都具有相同的名称:

[[NSNotificationCenter defaultCenter] addObserver:aObserver selector:aSelector name:*notification_name* object:nil];
[[NSNotificationCenter defaultCenter] postNotificationName:*notification_name* object:parameter];

它根据不同的notification.object告诉不同类型的通知,它是NSObject的一个自定义子类,它只包含一些整数,一些字符串和一些对象,如

@interface Parameter : NSObject
{
    // which is an enumeration type to actually define different notification type 
    ParameterID             m_iVCD_ID; 

    int                     m_iInt0;
    int                     m_iInt1;
    int                     m_iInt2;
    float                   m_fFloat0;
    float                   m_fFloat1;
    float                   m_fFloat2;
    NSString                *m_sString0;
    NSString                *m_sString1;
    NSString                *m_sString2;
    NSMutableArray          *m_oArray;

    NSObject                *m_oObject;
    NSObject                *m_oObject0;
    NSObject                *m_oObject1;
    NSObject                *m_oObject2;
}

我觉得这不是一个很好的主意,因为没有对notification.object 进行类型检查。 基于通知的架构是一个广播系统,因为它对所有通知使用相同的名称。另外,一开始就初始化所有的 UIViews 和 UIViewControllers 会消耗大量的内存。但是,在使用管理器时,我没有从控制台看到任何内存警告,而是在 console.app 中。

谁能给点其他建议?这种架构还有其他不好的方面吗?



Best Answer-推荐答案


我认为这是一个非常非常糟糕的方法。

您评论中的每个论点都是正确的:

I feel that it is not a very good idea because there is no type checking for the notification.object.

当然。

And the notification based architecture is a broadcast system because it uses the same name for all notifications.

除非有意,否则绝对没有意义。

In addition, initializing all UIViews and UIViewControllers at the start cost a lot of memory. However, I haven't seen any memory warning from the console but in console.app when using organizer.

是的,即使没有发出内存警告,它也在浪费内存。 UIViewUIViewController 有自己的生命周期,SDK 为您提供了在需要时加载和卸载(分配和释放)资源的方法。

除此之外, Controller 之间的通信应该通过@propertys、协议(protocol)或SDK提供的任何其他方法来完成。

来自 Apple 文档:

An observer of a given notification may be in a suspended state and not processing notifications immediately.

所以你不能依赖他们来执行,比如说,关键任务。

关于ios - iOS项目初始化项目中所需的所有UIViewController和UIView是一个好习惯吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23425822/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap