Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/python-3.x/19.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Objective c 当集成到像kony这样的跨平台时,框架中的重新定义问题_Objective C_Temenos Quantum_Fscalendar - Fatal编程技术网

Objective c 当集成到像kony这样的跨平台时,框架中的重新定义问题

Objective c 当集成到像kony这样的跨平台时,框架中的重新定义问题,objective-c,temenos-quantum,fscalendar,Objective C,Temenos Quantum,Fscalendar,我是ObjC的新手,我正在使用FSCalendar框架进行多日期选择。当我在iOS中运行这个项目时,一切都很好,但是当我作为kony的FFI这样做的时候,我得到了太多如下的错误。有人能帮我解决这些错误吗 #导入“FSCalendarConstants.h” @班级日历; typedef NS_枚举(NSInteger、FSCalendarCellState){ FSCalendarCellStateNormal=0, FSCalendarCellStateSelected=1, FSCalen

我是ObjC的新手,我正在使用FSCalendar框架进行多日期选择。当我在iOS中运行这个项目时,一切都很好,但是当我作为kony的FFI这样做的时候,我得到了太多如下的错误。有人能帮我解决这些错误吗

#导入“FSCalendarConstants.h”
@班级日历;
typedef NS_枚举(NSInteger、FSCalendarCellState){
FSCalendarCellStateNormal=0,
FSCalendarCellStateSelected=1,

FSCalendarCellStatePlaceholder=1查看此处的限制,并确保这是受支持的内容。[在Kony中实现这一点要困难得多,即使这是可能的。将进行检查..感谢您的帮助@highhope
#import "FSCalendarConstants.h"

@class FSCalendar;

typedef NS_ENUM(NSInteger, FSCalendarCellState) {
    FSCalendarCellStateNormal      = 0,
    FSCalendarCellStateSelected    = 1,
    FSCalendarCellStatePlaceholder = 1 << 1,
    FSCalendarCellStateDisabled    = 1 << 2,
    FSCalendarCellStateToday       = 1 << 3,
    FSCalendarCellStateWeekend     = 1 << 4,
    FSCalendarCellStateTodaySelected = FSCalendarCellStateToday|FSCalendarCellStateSelected
};

typedef NS_ENUM(NSUInteger, FSCalendarSeparators) {
    FSCalendarSeparatorNone          = 0,
    FSCalendarSeparatorInterRows     = 1
};