Could you add the code below to DTCustomColoredAccessory along with a new DTCustomColoredAccessoryType called DTCustomColoredAccessoryTypeLeft
This creates an arrow that points left
case DTCustomColoredAccessoryTypeLeft:
{
// (x,y) is the tip of the arrow
CGFloat x = CGRectGetMaxX(self.bounds)-10.0;;
CGFloat y = CGRectGetMidY(self.bounds);
CGContextMoveToPoint(ctxt, x+R, y+R);
CGContextAddLineToPoint(ctxt, x, y);
CGContextAddLineToPoint(ctxt, x+R, y-R);
break;
}
Could you add the code below to DTCustomColoredAccessory along with a new DTCustomColoredAccessoryType called DTCustomColoredAccessoryTypeLeft This creates an arrow that points left