Friday, March 29, 2013

Apple iOS UDID Replacement - UUID,vendor,advertising id

Apple forbid all new / updated app of iphone to use UDID from May 1st, 2013.
There are some replacements : CFUUID/NSUUID, Vendor ID or Advertising ID.


 
Scope
Lifetime end
Available
UUID
Application
Uninstall app
iOS 2
Vendor ID
Development Team
Uninstall all apps of the development team
iOS 6
Advertising ID
Device
Wipe device
iOS 6



Thursday, March 28, 2013

Titanium TableView row count


How to get the number of rows in tableview with Titanium?
TableView default has one section. "table.data" is the section array.
If you don't create section, your rows are in "section 0".
Get the row count by

table.data[0].rows.length;

or

table.data[0].rowCount;