diff --git a/app.js b/app.js index 932bc3e..9bdc681 100755 --- a/app.js +++ b/app.js @@ -200,7 +200,7 @@ function assumeVarType(str, isArray, model) { else if(['bool', 'boolean'].includes(l_str)) model_type = "BOOL"; else if(['int', 'integer', 'long'].findIndex(v=>(new RegExp(v,'ig')).test(l_str)) >= 0) model_type = "NSInteger"; else if(l_str == strlist) model_type = "NSArray *" - else if(l_str == intlist) model_type = "NSArray *"; + else if(l_str == intlist) model_type = "NSArray *"; else model_type = model + " *"; var_type = isArray ? "NSArray<"+model_type+"> *" : model_type;; model_type = model_type.replace(' *','');