Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 533087
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:28:21+00:00 2026-05-13T09:28:21+00:00

How to draw a currency symbol in a custom label using CGContextShowTextAtPoint method in

  • 0

How to draw a currency symbol in a custom label using CGContextShowTextAtPoint method in draw rect.
Here the symbol is in string format.

Any help!!
Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T09:28:22+00:00Added an answer on May 13, 2026 at 9:28 am

    You have to resort to C style strings, since this is what CGContextShowTextAtPoint() requires. In order to correctly handle the locale (the currency symbol changes with the locale) you must use setlocale(), then you format your string using strfmon() and finally you pass the string created with strfmon() to CGContextShowTextAtPoint().

    Documentation is available as follows from the terminal:

    man 3 setlocale
    man 3 strfmon
    

    EDIT/UPDATE: For your information, strfmon() internally uses struct lconv. The structure can be retrieved with the function localeconv(). See man 3 localeconv for a detailed description of the fields available in the structure.

    for instance, try the following simple C program setting different locales

    #include <stdio.h>
    #include <locale.h>
    #include <monetary.h>
    
    int main(void)
    {
        char buf[BUFSIZ];
        double val = 1234.567;
    
        /* use your current locale */
        setlocale(LC_ALL, ""); 
    
        /* uncomment the next line and try this to use italian locale */
        /* setlocale(LC_ALL, "it_IT"); */ 
        strfmon(buf, sizeof buf, "You owe me %n (%i)\n", val, val);
    
        fputs(buf, stdout);
        return 0;
    }
    

    The following uses localeconv():

    #include <stdio.h>
    #include <limits.h>
    #include <locale.h>
    
    int main(void)
    {
        struct lconv l;
        int i;
    
        setlocale(LC_ALL, "");
        l = *localeconv();
    
        printf("decimal_point = [%s]\n", l.decimal_point);
        printf("thousands_sep = [%s]\n", l.thousands_sep);
    
        for (i = 0; l.grouping[i] != 0 && l.grouping[i] != CHAR_MAX; i++)
            printf("grouping[%d] = [%d]\n", i, l.grouping[i]);
    
        printf("int_curr_symbol = [%s]\n", l.int_curr_symbol);
        printf("currency_symbol = [%s]\n", l.currency_symbol);
        printf("mon_decimal_point = [%s]\n", l.mon_decimal_point);
        printf("mon_thousands_sep = [%s]\n", l.mon_thousands_sep);
        printf("positive_sign = [%s]\n", l.positive_sign);
        printf("negative_sign = [%s]\n", l.negative_sign);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 296k
  • Answers 296k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer It's possible to do it with PHP. Not a typical… May 13, 2026 at 7:05 pm
  • Editorial Team
    Editorial Team added an answer Detecting and Installing Gears although this requires gears_init.js. Maybe the… May 13, 2026 at 7:05 pm
  • Editorial Team
    Editorial Team added an answer Here is the cmd for running the sql files Ended… May 13, 2026 at 7:05 pm

Related Questions

How to draw a default image in imageview in the center of imageView?using -
How to use QPainter and QTimer to draw a real time sinusoid like sinus(
I know how to draw a button in C++ but how would i make
I'm trying to find out how to draw a path, and then fill it
I'm looking for ideas on how to draw a skinnable button in a game

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.