NSString* volName = [NSString stringWithFormat:@"volname=%@", mountPath.lastPathComponent];
NSString* mountIconPath = [[NSBundle mainBundle] pathForResource:@"mount-icon" ofType:@"icns"];
NSString* volIcon = [NSString stringWithFormat:@"volicon=%@", mountIconPath];
NSArray* options = @[ volName, @"modules=iconv", volIcon, @"auto_cache", @"daemon_timeout=7" ];
[self.fuse mountAtPath:mountPath withOptions:options];
As you can see, I'm using iconv module and volicon path. All of this used to work just fine prior to 3.10.6. Does anyone have any idea what could be wrong?