Search code examples
iosobjective-ciphoneios5

Add Multiple Entity with SocializeActionBar


Hello i am using SocializeActionBar for my app there i have multiple links.

I am creating it like this

self.actionBar = [SocializeActionBar actionBarWithKey:@"http://www.logisticinfotech.com/extra/acc_ident.mp3" name:@"acc_ident" presentModalInController:self];

[self.view addSubview:self.actionBar.view];

my Question is that i want to change url but not want to create new object of SocializeActionBar.

because i have lots more than 100 images so creating new object for every images is not good idea as point of memory for iphone.

Thanks in Advance for any kind of help and Suggetions...


Solution

  • You can't change url of actionbar without allocating it again.

    you have to use your custom logic for what you want.