Giter VIP home page Giter VIP logo

monotouch-controls's Introduction

monotouch-controls's People

Contributors

efontana avatar escoz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

monotouch-controls's Issues

CalendarMonthView - click over 6's row

Is it possible to select date on 6 (5 if we starts from 0) row?

I mean july 31, october 30-31 of 2011.

I tried UICalendar for monotouch, which seems like fork of this component, and it is possible to select 6's row date.

CalendarMonthView starts on wrong day.

I ran into a problem while working with the CalendarMonthView today (02/04/2013) where when the calendar was rendered the 1st day of the month was shown as today (Monday) instead of the previous Friday.

I tracked the problem down to line 280 in CalendarMonthView.cs. Here is the error and my proposed solution, which works for me:

Error:
weekdayOfFirst = (int)_currentMonth.DayOfWeek;
CalendarMonthView-Broken

Explanation: The problem with this is the _currentMonth object is set to the current day, so whatever the current day is the weekdayOfFirst value will always be set to the current calendar day.

Proposed solution:
weekdayOfFirst = (_currentMonth.Day!=1) ? (int)(new DateTime(_currentMonth.Year, _currentMonth.Month, 1).DayOfWeek) : (int)_currentMonth.DayOfWeek;
CalendarMonthView-Fixed

Explanation: This code will do a quick check to see if the _currentMonth object is the first day of the month. If it's not then a new DateTime object will be instantiated at the first day and the DayOfWeek value grabbed. Otherwise, the value will be grabbed from the current object.

UIWebImageView loading image

When creating a custom UITableViewCell using a UIWebImageView it keeps showing the loader.

It only keeps showing the loader when using WebClient.DownloadStringAsync(url) where DownloadStringCompletedEventHandler fills the UITableViewCell with data ( including the image url )

When scrolling down and back up the images magicly seems to show.

LoadingHUDView - align option

Is it possible to aling a big one LoadingHUDView to center on UIView instead of top side?


Also, I found a not an issue, but just important info: in my project I call _hud.StopAnimating() in separated thread, which is used to load some data. Be informed that it doesn't do anything. StopAnimating() works only when executed in main threat. Something like this:
InvokeOnMainThread (delegate {
_hud.StopAnimating();
});
Now it (StopAnimating()) works.

CalendarMonthView - easy way to change images folder

I use CalendarMonthView in relatively big project, CalendarMonthView placed in separated "controls" folder. So to use it I should to update all paths to images files.

Please add an procedure or a CalendarMonthView's constructor parameter to set up where images should placed.

Thank you.

LoadingHUDView and UINavigationItem

You know, if show LoadingHUDView on view with UINavigationItem, it's doesn't disable user interaction with UINavigationItem. User can go back to previous view in stack or click right button.

I use LoadingHUDView in relatively big view with scrollview and other stuff. So I first think that is local issue. Next, I checked main demo of controls - issue is here too. You can go to Controls view even wen LoadingHUDView is showing.

`UICatalog.AppDelegate' does not contain a definition for `GetNativeField'

Hello,

This looks promising but I keep getting build errors when I pull the solution and try to compile. I'm seeing this error for lines 26, 31, 38, 43 of the MainWindow.xib.designer.cs.

/monotouch-controls/UICatalog/MainWindow.xib.designer.cs(85,85): Error CS1061: Type UICatalog.AppDelegate' does not contain a definition forGetNativeField' and no extension method GetNativeField' of typeUICatalog.AppDelegate' could be found (are you missing a using directive or an assembly reference?) (CS1061) (escoz)

any ideas would be greatly appreciated,

-mo

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.