国际商品编码(International Article Number),即欧洲商品编码(European Article Number, EAN),原来只是欧洲范围内商品,而现在已是全球范围内产品交易的商品代码。为了适应读码器辨认的需要,这些代码又被做成大家熟知的条形码。EAN码又分EAN-13码和EAN-8码,EAN-13码是为普通商品设置,而EAN-8是专门为小商品设置的。
一个简单的播放器实现
最近有个简单播放器的需求需要实现,公司其他项目本身已有播放器实现但是业务逻辑不满足现有需求,所以参照原有模块并结合相关资料自己实现了一个简单播放器,该播放器是基于
AVPlayer
实现的。
关于夜间模式功能实践的一次记录
iOS 开发笔记(三)
UITableViewCell 左滑删除功能
开启编辑模式
1 | - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { |
事件类型
1 | - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{ |
删除按钮标题
UITableViewCellEditingStyleDelete默认就是删除,可以不用实现该方法1
2
3
4- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
return @"删除";
}
事件提交
1 | - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{ |