It is likely that the library uses C's math.h sin() function, which is quite simply always in radians. See (if you are interested) section 7.12.4.6 of the C standard (large PDF)
For your app to provide both as options, you can achieve this in many, many ways. The best way depends on your app. If I were making a calculator with modes, I would likely have a calculator instance (model) which has a @property for the sin/rad mode, then my views would have a button connected to a viewController method -(IBAction)toggleAngleMeasurementUnit:(UIButton) sender, which calls the appropriate method on the calc object (it is also responsible for delegating most other button presses. Then inside your calculator class, ANY code which uses these values checks the mode first and does appropriate conversion (Or, perhaps more compellingly, the mode ONLY affects the accessor methods, and the value is stored in a canonical way (i.e. always radians), which would allow me to do 30 degrees + pi radians = ?
_DDFunctionUtilitiesreturn blocks, and those blocks take aDDMathEvaluatoras one of the arguments. That's where you'd be looking for "properties defined [elsewhere]". – Dave DeLong Jul 14 '12 at 22:16angleMeasurementModefrom Radians to Degrees. – Dave DeLong Aug 31 '12 at 17:21