Neil Pepper

Results 12 comments of Neil Pepper

@adrianknight89 you maybe experiencing the same problem as me, each time you call DependencyService.Get(); you get the same object back, so the first time it works great, however if you...

Actually don't have to use DependencyService at all can use any IOC container e.g. using Autofac which xamarin.forms uses, So on iOS/Android side call following to register :- `builder.RegisterType ().As...

Only way i got it to work was include the code directly in project rather than use nuget package. N

Anyone find a solution to this ? Have been trying all sorts of work arounds but nothing working :-(

OK Fixed it. Name of property has changed to an _hScrollView. Easy when you know how! ``` _scrollView = (HorizontalScrollView)typeof(ScrollViewRenderer) .GetField ("_hScrollView", BindingFlags.NonPublic | BindingFlags.Instance) .GetValue (this); ```

Thanks . As an update in a new project I started I also needed a carousel view and there is actually an official from Xamarin now, it was supposed to...

Yeah my original UX had the pips too , i just did them programatically in forms, although they have been removed now. bloody designers ;-)

@jhristov perfect. Yep i replaced the following line in OutputSignalTracker::start audioEngine.outputNode.installTap(onBus: bus, bufferSize: bufferSize, format: nil) With audioPlayer.installTap(onBus: bus, bufferSize: bufferSize, format: nil) and everything else works. Good work

if anyone else is looking for this, there is a port here https://github.com/alladinian/Tuna#pitch-engine

Hi Was any more consideration put into this, I could do with this too or perhaps just an IgnoreSLLErrors flag for debugging ? thanks