Matt K

Results 25 comments of Matt K

> Another approach, write in activity class > > ``` > override fun setTitle(title: CharSequence?) { > val font = Typeface.createFromAsset(assets, "font/Ubuntu-Medium.ttf") > super.setTitle(CalligraphyUtils.applyTypefaceSpan(title, font)) > } > ``` I...

Thanks for this library! It served a purpose where Google failed hard. iOS has had this since the early days. I have switched to the support library version, but I...

I'm having the same issue. My app starts zoomed out, showing everything clustered (while it's obtaining your location). Once the user's location is found, the app will zoom in on...

Here's a screenshot. ![maciej](https://user-images.githubusercontent.com/6249207/28501863-c506f900-6faa-11e7-8341-78199e5f8f62.jpg)

I ended up using the clusterSize parameter, which did a good enough job for my purposes. Feel free to close this one!

I can reproduce this issue simply by enabling airplane mode on my iPhone 5, iOS 7.1. The app will hang every time on CGFontRef newFont = CGFontCreateWithDataProvider(fontDataProvider); in registerIconForUrl.

Calling [UIFont familyNames] before the offending line resolves it for me! The link in the original post describes the issue and work around.

Hi @PrideChung ! I love your library and have been using it for a year in my iOS app. I really want to use your library in my WatchKit app,...

You rock @PrideChung ! If you can post here again and tag me when you get it working, I'd be glad to try it out right away, and write up...

I need this too - however, it can be done on your own. Register an onQueryTextChange listener, and in that method, save the search term to a variable. If you...