hi,
i write an application in which i want to write/draw the text using CGContext functions such as CGContextSetTextPosition, CGContextSetTextDrawingMode, etc.
I written an code but it can't be work,
CGContextSetTextDrawingMode (ctx , kCGTextFillStroke);
CGContextSetRGBFillColor(ctx, 5.0, 5.0, 5.0, 1.0);
CGContextSelectFont(ctx, "Times", 10, kCGEncodingMacRoman);
CGContextShowTextAtPoint (ctx, 60.0, 426.0, (const char*)"Sat", (size_t)20);
The above code is appropriate or not?