This code as a declare?

Hi, long shot, but will ask anyway.

Does anyone with the knowledge of Declares think that this code snippet could be covered by some declare statements?

[self.servicesPopupButton removeAllItems];

	NSArray <ACNEService*>* neServices = [[ACNEServicesManager sharedNEServicesManager] neServices];
	for(ACNEService *neService in neServices)
	{
		[self.servicesPopupButton addItemWithTitle:neService.name];
	}

I’d like to put the results of each neService.name in to a Xojo string array.

Thanks,
Dave.

Resolved. Had to do in Xcode and build a terminal app to return the results.