OC 建议实现类似淘宝的物流步骤视图

这篇博客分享了如何用Objective-C(OC)编程语言实现一个与淘宝类似的物流步骤展示视图,通过代码示例详细阐述了实现过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

代码如下:

#import "BaseViewController.h"
/**物流信息类*/
typedef NS_ENUM(NSUInteger, WuLiuPosition){
    /**最上面的物流信息*/
    WuLiuPositionTop,
    /**中间的物流信息*/
    WuLiuPositionMid,
    /**最下面的物流信息*/
    WuLiuPositionBottom
};
@interface WuLiuInfo : NSObject
- (instancetype)initWithMessage:(NSString *)message time:(NSString *)time position:(WuLiuPosition)position;
@property (nonatomic, strong)NSString *message;
@property (nonatomic, strong)NSString *time;
@property (nonatomic, assign)WuLiuPosition position;
/**获取物流信息的高度*/
- (CGFloat)getCellMessageHeightWithMessageWidth:(CGFloat)width MessageFont:(UIFont *)font;
/**获取物流时间戳的高度*/
- (CGFloat)getCellTimeHeightWithWidth:(CGFloat)width TimeFont:(UIFont *)font;
@end
/**物流cell*/
@interface WuLiuCell : UITableViewCell
@property (nonatomic, strong) WuLiuInfo *wuliu;
@property (nonatomic, strong) UILabel *messageL;
@property (nonatomic, strong) UILabel *timeL;
/**点*/
@property (nonatomic, strong) UIView *point;
/**线*/
@property (nonatomic, strong) UIView *line;
@end
/**物流控制器*/
@interface WuLiuViewController : BaseViewController
@end
#import "WuLiuViewController.h"

@interface WuLiuViewController ()<UITableViewDelegate,UITableViewDataSource>
@property (nonatomic, strong)NSArray *data;
@property (nonatomic, strong)UITableView *tableV;
@end

@implementation WuLiuViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    WuLiuInfo *wuliu1 = [[WuLiuInfo alloc
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值