Widget Pickerwheel Not Working On Daily On Ios - Bug ?

I’ve ported all widget from 1 to 2.0.

With pickerWheel i’ve a prob with 1055 daily Enterprise license.

 

Building with corona pro everything is fine on iOs and Android, but when i switch to enterprise, on Android, picker wheel works fine but on iOs it complains about a nil value.

It seems something about the labels field, i’ve not specific error and line but a generic nil ? statement.

 

To be clear, the same code works fine on same app builded with pro for iOs and Android and works fine on Enterprise for Android, but not with enterprise for iOs.

 

Use sample shipped with corona to reproduce.

Any new about this problem, someone looked into it?

I can add it appens on 1055 and 1054.

Does anyone has the same problem, i cannot build for client…

tried the 1057 build but the problem persist, should i look forward for next daily?

No one can even confirm if this is a bug or not? 1060 and the problem is still there. :frowning:

Just to repeat, that the same code builded with corona enterprise for android works fine.

Any new about this problem, someone looked into it?

I can add it appens on 1055 and 1054.

Does anyone has the same problem, i cannot build for client…

We had to revert to enterprise 1033, i was expecting a reply from someone from enterprise staff. Here we are at 27th i’ve opened this thread on 15th.

I do not expect support by the forum, i know you sell it, but i expect communication, expecially on potential bugs and moreover on enterprise product level.

(I’ve sent a bug report days agò)

Sometimes you’ll get lucky and a Corona Staff member might read your post, or better yet a Corona Labs engineer and they’ll reply. Often times the Corona Labs community will reply confirming bugs/issues. Since you’re asking about Enterprise my guess is that there isn’t too many members that are active on the forums that have that license. Best thing you can do is file a Bug like you have already done. I filed a similar bug about the Pickerwheel throwing nil errors on a scrollbar not the labels field, and got a response fairly quick. I’m sorry but I don’t have an enterprise license so I can’t test that out specifically for you.

I’ve ported all widget from 1 to 2.0.

With pickerWheel i’ve a prob with 1055 daily Enterprise license.

Building with corona pro everything is fine on iOs and Android, but when i switch to enterprise, on Android, picker wheel works fine but on iOs it complains about a nil value.

It seems something about the labels field, i’ve not specific error and line but a generic nil ? statement.

To be clear, the same code works fine on same app builded with pro for iOs and Android and works fine on Enterprise for Android, but not with enterprise for iOs.

Use sample shipped with corona to reproduce.

Are you adding: CoronaResources.bundle to your xcode project?

Apologies for the late reply.

 Are you adding: CoronaResources.bundle to your xcode project?

Apologies for the late reply.

One of our engineers tried this fix and it did not seem to fix this issue.

tried the 1057 build but the problem persist, should i look forward for next daily?

Should i have to assume 1072 solved the problem?

And about this?

http://forums.coronalabs.com/topic/33013-widget-slider-broken-on-enterprise-ios-bug/

Now i’m stucked on 1033 and porting the whole project to 1072 could be a huge work because the project is quite big, so it could be helpful to know, before, if widget blocking bugs are solved.

Thanks

I have just tested Enterprise v1072 with the our “App” sample modified to run the widget demo and cannot reproduce this issue or the other one you posted.

Thanks.

I have tried moving the CoronaResources.bundle into my xcode project, still doesn’t work. I have also upgraded to 1072 and I get :

Runtime error ?:0: attempt to index a nil value stack traceback: &nbsp;&nbsp;&nbsp;&nbsp;[C]: ? &nbsp;&nbsp;&nbsp;&nbsp;?: in function '?' &nbsp;&nbsp;&nbsp;&nbsp;?: in function \<?:248\> &nbsp;&nbsp;&nbsp;&nbsp;(tail call): ? &nbsp;&nbsp;&nbsp;&nbsp;...2.0/Codebase/trunk/corona\_pro/ios/../Corona/main.lua:181: in function 'main' &nbsp;&nbsp;&nbsp;&nbsp;...2.0/Codebase/trunk/corona\_pro/ios/../Corona/main.lua:192: in main chunk &nbsp;

All I did was use the sample project code to produce this error. The code is literally this:

io.output():setvbuf( "no" ); local widget = require("widget"); function main() &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; local days = {} &nbsp; &nbsp; local years = {} &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; for i = 1, 31 do &nbsp; &nbsp; &nbsp; &nbsp; days[i] = i &nbsp; &nbsp; end &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; for i = 1, 44 do &nbsp; &nbsp; &nbsp; &nbsp; years[i] = 1969 + i &nbsp; &nbsp; end &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; -- Set up the Picker Wheel's columns &nbsp; &nbsp; local columnData =&nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; align = "right", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width = 150, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; startIndex = 5, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; labels =&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; align = "left", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width = 60, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; startIndex = 18, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; labels = days, &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; align = "center", &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width = 80, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; startIndex = 10, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; labels = years, &nbsp; &nbsp; &nbsp; &nbsp; }, &nbsp; &nbsp; } &nbsp; &nbsp; local pickerWheel = widget.newPickerWheel &nbsp; &nbsp; { &nbsp; &nbsp; &nbsp; &nbsp; top = 210, &nbsp; &nbsp; &nbsp; &nbsp; font = native.systemFontBold, &nbsp; &nbsp; &nbsp; &nbsp; columns = columnData, &nbsp; &nbsp; } &nbsp; &nbsp;&nbsp; end main(); &nbsp;

EDIT:

So I basically deleted everything and found out the issue was the CoronaResources.bundle was not linking properly with the xcode project. 

Did that resolve your issue? Thanks

Yes, once I deleted everything and linked everything it worked properly.