Files
mier_ios/SweetParty/主类/RCMic/Room/RTCStatus/ExcelView/YHExcelViewIndexPath.h
2025-08-11 10:43:19 +08:00

23 lines
555 B
Objective-C
Executable File

//
// YBFPeportViewIndexPath.h
//
// Created by Yahui on 16/3/4.
// Copyright © 2016年 Yahui. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface YHExcelViewIndexPath : NSObject
+ (instancetype)indexPathForCol:(NSInteger)col inRow:(NSInteger)row inSection:(NSInteger)section;
+ (instancetype)indexPathForCol:(NSInteger)col atIndexPath:(NSIndexPath *)indexPath;
@property (nonatomic, readonly ,assign) NSInteger section;
@property (nonatomic, readonly ,assign) NSInteger row;
@property (nonatomic, readonly ,assign) NSInteger col;
@end