Bishal Ghimire

Results 13 comments of Bishal Ghimire

im getting the same issue, in my case i'm using the project as Framework, and EZAudio is part of the framework.

In my case I had not give frame to EZAudioPlotGL, giving the frame in init solve the issue for me.

To fix missing dates i changed the following codes in _FFMonthCell_ file ``` - (void)initLayout { ... labelDay = [[UILabel alloc] initWithFrame:CGRectMake((imageViewCircle.frame.size.width-25.)/2., (imageViewCircle.frame.size.height-25.)/2., 25., 25.)]; ```

@omarojo : Have you tried - `NextLevel.videoConfiguration.maxKeyFrameInterval = 120` I have not tried this but just saw in the Configuration so might work?

I was able to make the code work without crashing by removing the delegate call which was on Main Thread. This was not the desired as that was the only...

Yes, even better unit test should be implemented as early as possible. i feel all the lessons and level should be TDD. Its okay if we introduce it later, but...

I believe as there will be many Lesson and Levels we should use consistence standard like - "< Level-Number > - < App-Name > - < Lesson-Number > " Currently...

Yes, exactly, also every where it is possible. Even in the repo name with "< Label-Number >" prefix would have been better. As we will have 100 of repo under...

I always find "Xcode Plugin" handy, im a lazy developer :) Would love something similar to SwiftLint. ie one word command that fixed all my issue ! This might sound...