Cocoa: put returns in NSString to keep it to a certain width

Ask a Question related to Mac Programming, Design and Development.

  1. #1

    Default Cocoa: put returns in NSString to keep it to a certain width

    I have an NSString. Sometimes it contains only a tiny bit of text
    but sometimes it's more than that. If it'll be wider than a
    certain amount I want to display it on multiple lines. I know what
    font, etc. it'll be drawn in.

    How do I figure out where to put the returns ? Is there a function
    which will wrap the string for me or tell me where to wrap it ?


    Simon Slavin Guest

  2. Similar Questions and Discussions

    1. #26132 [Opn->Bgs]: pg_fetch_object returns NULL on serial and INT in record but returns strings NP
      ID: 26132 Updated by: iliaa@php.net Reported By: steven at pearavenue dot com -Status: Open +Status: ...
    2. #26132 [Opn]: pg_fetch_object returns NULL on serial and INT in record but returns strings NP
      ID: 26132 User updated by: steven at pearavenue dot com Reported By: steven at pearavenue dot com Status: Open Bug...
    3. NSString in NSDateFormat'ed cell
      Hi, can anyone suggest a quick way to show an NSString in an NSTableView cell that has been formatted as an NSDateFormat ? It's a dynamic special...
    4. NSString -> c string warning
      In <clund-E17CA6.11533517082003@amstwist00.chello.com> C Lund wrote: Because you didn't say const. m. -- matt neuburg, phd =...
    5. Escape sequence for unicode characters in NSString
      What is the escape sequence for a unicode character in an NSString? I want to do something like NSString *stuff = @"The Greek letter Beta looks...
  3. #2

    Default Re: Cocoa: put returns in NSString to keep it to a certain width

    In article <BB8179069668744F7C@10.0.1.2>,
    [email]slavins@hearsay.demon.co.uk[/email]@localhost (Simon Slavin) wrote:
    > I have an NSString. Sometimes it contains only a tiny bit of text
    > but sometimes it's more than that. If it'll be wider than a
    > certain amount I want to display it on multiple lines. I know what
    > font, etc. it'll be drawn in.
    Just display it in an NSTextView or NSTextField that you've set to wrap
    its text. Then it'll automatically wrap.
    Uli Kusterer Guest

  4. #3

    Default Re: Cocoa: put returns in NSString to keep it to a certain width

    In article <witness-373B69.02450008092003@news.t-online.com>,
    Uli Kusterer <witness@t-online.de> wrote:
    > [email]slavins@hearsay.demon.co.uk[/email]@localhost (Simon Slavin) wrote:
    >
    >> I have an NSString. Sometimes it contains only a tiny bit of text
    >> but sometimes it's more than that. If it'll be wider than a
    >> certain amount I want to display it on multiple lines. I know what
    >> font, etc. it'll be drawn in.
    >
    >Just display it in an NSTextView or NSTextField that you've set to wrap
    >its text. Then it'll automatically wrap.
    Then how do I look at it and see where it was wrapped ?
    I can't use those things as the ultimate destinations for it,
    I have to take the wrapped string and do more things with it.


    Simon Slavin Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139