zoukankan      html  css  js  c++  java
  • return 还是 continue,一个是跳出函数,一个是 跳出本次循环,

     for (NotificationItem *item insortedCommonArray) {

                if (item.type == 1 && item.time == currentTime) {//

                    if (!item.parentSelected || !item.selected) {

                        continue;

                    }

                     TNotificationView *notificationView = [[[UINibnibWithNibName:@"TNotificationView"bundle:nil]instantiateWithOwner:selfoptions:nil]objectAtIndex:0];

                    notificationView.titleLabel.text = item.drugName;

                    notificationView.secondLabel.text = item.intro;

                    notificationView.iconImageView.image = [UIImage imageNamed:@"icon_medicine.png"];

     

                    notificationView.frame = CGRectMake(originX, originY, notificationView.frame.size.width, notificationView.frame.size.height);

                    [self.mScrollView addSubview:notificationView];

     

                    originY = originY +  notificationView.frame.size.height;

                }

                

            }

  • 相关阅读:
    Python基础知识随手记
    Java异常笔记整理
    LDAP笔记
    IntelliJ IDEA14导入项目
    字符编码
    认识显示器接口..
    4GB的内存条在32位系统中只能显示为3GB左右的原因(转)
    Velocity截取字符串.
    veloeclipse插件安装
    Velocity使用
  • 原文地址:https://www.cnblogs.com/guligei/p/3160758.html
Copyright © 2011-2022 走看看