我有一个单例对象。是否有任何简单的方法可以确定当前屏幕是否包含单例方法中的导航栏?
单例是 UIView 子类。它是为显示进度活动而设计的,例如网络交换。它看起来像黑色矩形从顶部下降并在工作完成后隐藏。为什么是单例?从任何代码位置都可以轻松调用它
以下片段显示了活动单例的初始化,并在此处发布只是为了更好地理解我的想法。
-(void) showUpdatingView:(NSString *) msg {
[self initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, 44)];
activity = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite] autorelease];
activity.frame = CGRectMake(5, 10, 22, 22);
labelView = [[[UILabel alloc] initWithFrame:CGRectMake(35, 10, [UIScreen mainScreen].bounds.size.width - 10, 22)] autorelease];
labelView.font = [UIFont boldSystemFontOfSize:12];
labelView.backgroundColor = [UIColor clearColor];
labelView.textColor = [UIColor whiteColor];
labelView.text = msg;
[self addSubview:activity];
[self addSubview:labelView];
self.backgroundColor = [UIColor blackColor];
self.alpha = 0.7;
}
活动可以通过
[[ActivitySingleton getInstance] showUpdatingView:@"Getting data."];
这还不是全部。正在 AppDelegate 对象中创建单例,并将视图添加到
inlineActivity = [[CHInlineActivityView alloc] initView];
[self.window.rootViewController.view addSubview:inlineActivity];
我知道这可能看起来很疯狂。但在我设计的时候,我觉得这很合理