[Mono-bugs] [Bug 643406] New: It would be nice to have an enumeration for the named core animation time functions and be able to set the timing function via that enumeration
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Mon Oct 4 01:16:15 EDT 2010
https://bugzilla.novell.com/show_bug.cgi?id=643406
https://bugzilla.novell.com/show_bug.cgi?id=643406#c0
Summary: It would be nice to have an enumeration for the named
core animation time functions and be able to set the
timing function via that enumeration
Classification: Mono
Product: MonoTouch
Version: unspecified
Platform: Other
OS/Version: Other
Status: NEW
Severity: Enhancement
Priority: P5 - None
Component: Class Libraries
AssignedTo: mono-bugs at lists.ximian.com
ReportedBy: bryancostanich at hotmail.com
QAContact: mono-bugs at lists.ximian.com
Found By: Customer
Blocker: No
Right now, in order to set the timing function for a key animation you can
either define one yourself, or set it from the name of one of the built in ones
as follows:
keyFrameAnimation.TimingFunction =
CAMediaTimingFunction.FromName("kCAMediaTimingFunctionEaseIn");
there are a set of them:
NSString * const kCAMediaTimingFunctionLinear;
NSString * const kCAMediaTimingFunctionEaseIn;
NSString * const kCAMediaTimingFunctionEaseOut;
NSString * const kCAMediaTimingFunctionEaseInEaseOut;
NSString * const kCAMediaTimingFunctionDefault;
defined here:
http://developer.apple.com/library/ios/#documentation/Cocoa/Reference/CAMediaTimingFunction_class/Introduction/Introduction.html
it would be nice if there were a built in enumeration (or object with string
properties) called TimingFunctions or something, and then be able to create one
from that list.
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list