Sergii

Results 20 comments of Sergii

@johnno1962 yes, you were right, on iPhone 5s app does not give an error. It gives warning like: /Users/sergii/Developer/***ViewController.swift objc[41204]: Class _TtC14**21**ViewController is implemented in both /Users/sergii/Library/Developer/CoreSimulator/**Containers/Bundle/Application**/***.app/** and /Users/sergii/Library/Developer/Xcode/DerivedData/***Logs/iOSInjectionProject/build/Debug-iphonesimulator/InjectionBundle1.bundle/InjectionBundle. One...

Do you think it could be useful to add support of saving actually time when object has been initially cached and remove objects which time expires in the past since...

I am facing the same issue even after updating project to Swift 3.0 (from separate branch and my own changes). It works though in Xcode 8.2.1 But in Xcode 8.3...

https://gist.github.com/snezdoliy/2dcd509fd2b059661d92

@OneManStudioDotSe I think you should use methods like: ``` ultimateRecyclerView.setParallaxHeader(View view); ultimateRecyclerView.setNormalHeader(View view); ``` You can check usage here: https://github.com/cymcsg/UltimateRecyclerView/blob/master/UltimateRecyclerView/app/src/main/java/com/marshalchen/ultimaterecyclerview/demo/MainActivity.java#L92

At same time this seems not to work when using `MultiViewAdapter` unfortunately :( I have checked out whole project and it works perfectly when header is added from `MainActivity` but...

**UPD:** I've got more questions about methods which should or should **not** be overridden: - `UltimateDifferentViewTypeAdapter`subclass --> `onCreateViewHolder` ? What to do with it? - `DataBinder` subclass --> `getItemCount()` is...

I think I finally got how it should work in proper way. Based on your implementation, each `DataBinder` receives relational `binderPosition` in its `public void bindViewHolder(ViewHolder viewHolder, int position)` method....

I have adapted my datasets to behave in a way it should behave, and now facing another issue. When trying to load more data (infinite scrolling) I am getting `IndexOutOfBoundsException`...

@Studentessa have you tried approach I am describing in [this comment](https://github.com/cymcsg/UltimateRecyclerView/issues/111#issuecomment-118910272)? I am managing positions in a custom way to provide different view holders base don them. Let me know...