So I didn't find an automatic way to instruct btouch to hook up the NSFastEnumerable protocol methods to provide an IEnumerable interface implementation on the binding class. Instead I took the manual approach, and added my own partial class with IEnumerable implementation. Within this I then had to actually call direct into the C library that this Obj-C library was wrapping!
public partial class ZBarSymbolSet : IEnumerable<ZBarSymbol>
{
public IEnumerator<ZBarSymbol> GetEnumerator ()
{
IntPtr symbol;
if ( FilterEnabled )
symbol = zbar_symbol_set_first_symbol(this.InnerNativeSymbolSetHandle);
else
symbol = zbar_symbol_set_first_unfiltered(this.InnerNativeSymbolSetHandle);
while ( symbol != IntPtr.Zero )
{
yield return new ZBarSymbol(symbol,0);
symbol = zbar_symbol_next(symbol);
}
}
IEnumerator IEnumerable.GetEnumerator ()
{
return GetEnumerator();
}
[DllImport("__Internal")]
private extern static IntPtr zbar_symbol_next(IntPtr zBarSymbol);
[DllImport("__Internal")]
private extern static IntPtr zbar_symbol_set_first_symbol(IntPtr zbarSymbolSet);
[DllImport("__Internal")]
private extern static IntPtr zbar_symbol_set_first_unfiltered(IntPtr zbarSymbolSet);
}
The InnerNativeSymbolSetHandle used above to pass into the C functions was a property I bound on the ZBarSymbolSet class as luckily the ZBar iPhone SDK authors exposed pointers to the underlying structs from the C ZBar library:
// @interface ZBarSymbolSet : NSObject <NSFastEnumeration>
[BaseType (typeof(NSObject))]
interface ZBarSymbolSet
{
// @property (readonly, nonatomic) int count;
[Export("count")]
int Count { get; }
// @property (readonly, nonatomic) const zbar_symbol_set_t *zbarSymbolSet;
[Export("zbarSymbolSet")]
IntPtr InnerNativeSymbolSetHandle{ get; }
// @property (nonatomic) BOOL filterSymbols;
[Export("filterSymbols")]
bool FilterEnabled { get; set; }
}
So this is the manual solution.
I am still hoping there is an automatic way for btouch to do this (obviously not via these C functions, but via hooking into the countByEnumeratingWithState function of the NSFastEnumeration protocol. If objective-c can do it in a generic fashion using the objective-c for loop, then surely MonoTouch can automatically hook into it as well?