I think you'd be better off doing things programmatically, but leverage the
framework as much as possible.  I'm developing on the iPhone, so if you're
not, I hope there are analogous built-in classes that you can leverage:

   1. Since it looks like you want rows of objects, I'd leverage UITableView
   (as an IBOutlet) since you can then dynamically insert/delete rows of
   similar groups of objects.
   2. For each row, I'd use a custom UITableViewCell in which you would
   define the elements (here, I'd do it programmatically) you specify, namely:

UITextField *src1;
UIProgressIndicator *progressbar1;
UITextField *dest1;
UIButton *halt1;
UIButton *remove1;
UITextField *precentdone1;


HTH, Chuck
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to