The NSMutableString class declares the programmatic interface to an object that manages a mutable string — that is, a string whose contents can be edited — that conceptually represents an array of Unicode characters.
0
votes
3answers
28 views
putting words of a sentence into different transparent labels when a button is clicked
i have a sentence which i stored in a NSMutablesstring, i have a button such that when tapped, it loads the sentence words into labels, for example, take "i am a boy" for instance, when the button is ...
0
votes
0answers
9 views
NSMutableString v/s NSString
I have a problem related to retain count.
NSString *str = [[NSString alloc] initWithString:@"my name"];
NSLog(@"Retain Count : %d",str.retainCount);
it is giving me -1 as retain count.
...
1
vote
1answer
36 views
Email NSMutableString in Objective C
I am sending a NSMutableString through the body of an email.
It will not work because it says senderString cannot by statically located. Help?
NSMutableString *senderString = [[NSMutableString alloc] ...
1
vote
2answers
73 views
Objective-c - NSMutableString setString vs NSString
Is it a better practice, in a setter, to retain and release NSString as follows :
-(void) setName:(NSString *)newName
{
if(newName != nil)
{
[newName retain]:
[m_Name ...
-2
votes
2answers
38 views
how to change the values in the string between the letters
I have string something like @"goodhouse=30&app=60&val=30askldkla"
How can i found the value 30 between house= and &, and change it on 50.
Any ideas?
Thx a lot
2
votes
2answers
41 views
Fastest way to manipulate strings in objective-c
I'm relatively new to Objective C and I'm trying to figure out how to efficiently replace a character in a string in the case that I know the index where that character would be.
Basically if S is my ...
0
votes
1answer
35 views
__NSCFString appendString: crash for NSMutableString in Cocoa
I have been facing this issue and I admit that I lack of some fundamental concepts of memory managements. I've not been able to solve this and trust me, I've been trying so many things out.
In my ...
-5
votes
3answers
103 views
what is actual difference between NSString and NSMutable String in objective C with the help of example? [duplicate]
what is actual difference between NSString and NSMutable String in objective C?
I have searched a lot but not getting any answer..I understand that NSString is Immutable object and NSMutableString is ...
0
votes
3answers
54 views
How can i convert hex value to NSString?
I have following code for converting hex value to corresponding nsstring but its not working for me
NSMutableString * newString = [[NSMutableString alloc] init];
NSString *string=@"5c 57 c7 25 d9 ...
1
vote
1answer
86 views
Checking and editing NSMutableString
I get results in the following format:
NSString *placeResult = @"111 Main Street, Cupertino, CA"
or sometimes the result contains the name of a place:
NSString *placeResult = @"Starbucks, 222 Main ...
0
votes
3answers
48 views
NSString not mantain value after “blanking” of a source NSMutableString
this is a more theoretical question than pratical;
Assuming that i have two Strings, one normal and one mutable, if i do:
NSMutableString *prova = [[NSMutableString alloc] init];
NSString *prova2 = ...
0
votes
3answers
61 views
How to pad strings to a fixed width with NSMutableString?
I'm trying to write a string to a text file. That text file will then be read by another program. That second program is expecting the different "fields" in the text file to be a fixed width. ...
1
vote
4answers
86 views
Inserting a comma for integers when there are three digits added everytime to the textfield in iOS
I need to add comma separating numbers into three digits without white spaces and if total digits are under three, then no comma added.
For example:
2984 => 2,984
297312984 => 297,312,984
298 ...
0
votes
3answers
57 views
How to fix this mutating error?
I'm getting this error:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Attempt to mutate immutable object with replaceCharactersInRange:withString:'
But I ...
1
vote
1answer
99 views
Concatenate NSStrings from NSMutableArray to NSString
I need to create a NSString for browsing folders in FTP share. i show the directory on a TableView, and user´s can browse by selecting row ´s
Im writing the string of selected rows into a mutable ...
0
votes
1answer
78 views
What is an actual example of the difference between NSString to NSMutablestring could look like?
I'v been looking around in the questions here and could not find simple example to point me the difference while I was testing some code of my own to test the differentiation.
From what I understand, ...
1
vote
2answers
101 views
How to use an NSMutableString in a method that takes an NSString?
NSScanner takes a pointer to an NSString:
NSMutableString *myString;
...
[scanner scanUpToCharactersFromSet:charSet intoString:&myString];
[myString appendString:@"hello"];
But myString is ...
0
votes
0answers
32 views
creating and editing a 2 dimensional mutable string array
In my iOS app I want to populate an array initially with strings containing 13 spaces each. Then during processing in random order for each row of the array I want character-by-character to replace ...
1
vote
1answer
605 views
NSMutableString replaceOccurrencesOfString replacing whole words
Is there a way to use replaceOccurrencesOfString (from NSMutableString) to replace whole words?
For example, if I want to replace all occurrences of a fraction in a string, like "1/2", I'd like that ...
0
votes
0answers
76 views
Convert hybrid NSData to NSString
My requirement is to convert an NSData stream that is written in 2 formats: hex bytes and normal string data (not sure what is correct name for it but if you have a look you can know).
I am trying ...
0
votes
2answers
107 views
Difference between nil and @“” in NSMutableString iOS
I want to know the difference between nil and @"" in NSMutableString.
I need to clean string value in NSMutableString every second.
So
myMutableString = nil;
or
myMutableString = @"";
Which ...
0
votes
1answer
92 views
append a NSString converted from dictionary object to NSMutableArray
I have been bothered by this problem for a long time.
I have a NSString which is the received from a RSS parser, I can successfully NSlog it on the screen, but when I try to append it to an existing ...
0
votes
0answers
32 views
IOS UIMarkupTextPrintFormatter + NSMutableString SetMarkupText = LEAK
i came across a strange issue. When using an NSMutableString in connection with an UIMarkupTextPrintFormatter. The profiler shows me a leak as soon as I set the markup text of the ...
0
votes
1answer
73 views
How to fix memory leak in NSMutableString?
when i check memory leak through instrument it shows leak on NSMutableString.Here is the leaked code ,
whats the 66.7% means..? How to solve this leak.?
Second method shown in call tree is
...
0
votes
1answer
59 views
add letter to to string in objective c if statement
Hello below is the code i am using
currentCardDisplayed = [NSMutableString stringWithFormat:@"%@.png", [[cardsShuffled objectAtIndex:currentCard-1] substringToIndex:[[cardsShuffled ...
0
votes
1answer
137 views
Thread 1 : signal SIGABRT - when trying to get NSMutableString
Here is my code:
.h
NSMutableString *buffer, *tmpBuffer;
int status; // 0=waiting for <DMX>, 1=recording
.m
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
...
1
vote
3answers
247 views
Cannot append to NSString
I'm trying to append the file extension to a the stringValue returned by a subclassed NSTextFieldCell
I've tried everything I knew and could find on the internet, but this is just giving me a ...
0
votes
1answer
46 views
Setting expectation on NSMutableAttributedString
I am writing a unit test for an "if" statement in a method which returns a NSMutableAttributedString and I am getting some error.
Actual code for IF statement:
if (conditionIsTrue)
{
...
2
votes
2answers
58 views
Replace String not work
I need to add the string @"d" after "id="
Example =
url = @"id=63488320543140151742289377"
needs to be
url = @"id=d63488320543140151742289377"
I have tried this:
NSRange range = [url ...
-3
votes
5answers
247 views
iOS Error: Assigning to NSMutableString from NSArray object (type 'void')? [closed]
I just can't seem to resolve the error that comes up here: "Assigning to 'NSMutableString *__strong' from incompatible type 'void'". The array string value I am trying to append is an NSArray ...
0
votes
2answers
46 views
Removing annotation string from the NSmutableString
I am working on mapView project. My project will take only 5 annotations on the map. Once new annotation will be added, then first annotation will be drop. I am keeping all annotations latitude and ...
2
votes
3answers
85 views
How do I add a character to an already existing string?
When I make:
NSString x = @"test"
How do I edit it so that it becomes "testing"?
And when I put:
NSMutableString x = [[NSMutableString alloc] initWithString:@"test"];
There is an error that ...
0
votes
1answer
1k views
How to display html content on UIWebView IOS
I have a form sheet segue that should display hard-coded html page.
Now I have a two part problem first problem is
<CENTER><H1>A Simple Sample Web Page</H1><H4>By ...
2
votes
1answer
197 views
Is CFStringTransform thread safe and reentrant?
I see my app is stuck in deadlock state(the main thread is waiting in semaphore_wait_trap, see call stacks below) several times while calling more than one instances of CFStringTransform ...
0
votes
3answers
78 views
generating runtime html string is not rendering as html
I', return a NSMutableString with html in it, now the problem is when i save it it renders as string in browser. any idea what can be done about it?
<html>
<body>
Hello World
...
1
vote
1answer
2k views
NSMutableAttributedString crashing on changing the font?
I'm sure mutable means it can be changed, so why's this happening?
attrString = [[NSMutableAttributedString alloc] initWithString:@"Tip 1: Aisle Management The most obvious step – although one that ...
0
votes
1answer
83 views
Parse XML From Wikipedia
I'm using NSXmlParser and trying to parse this XML file:
<api>
<query>
<normalized>
<n from="new york" to="New york"/>
</normalized>
<redirects>
<r from="New ...
0
votes
0answers
38 views
How to update/process a string with less memory in UITextview
I need some help, I have made a simple note using UITextview. In some process I need to update the string in textview with other's string that can change dynamically. I used a NSMutableString as a ...
0
votes
2answers
196 views
Why is my NSSMutableString potentially insecure?
Why is my NSMutableString potentially insecure? I searched for this but couldn't find anything.
int hour = [number intValue] / 3600;
NSMutableString *time = [[NSMutableString alloc] ...
0
votes
1answer
47 views
setValue points to the object instead of copying the NSString
I'm parsing an XML document. I have an NSMutableString to hold the value for each node I'm passing through and for specific nodes - I want to update the NewsElement class.
This is my code:
...
0
votes
1answer
217 views
Can't save file to disk, no clue why
I'm trying to write a string to disk:
return [fileContent writeToFile:path atomically:YES encoding:NSUnicodeStringEncoding error:error];
But it always fails with the following error:
Error ...
1
vote
3answers
89 views
Is is possible to directly set a string value for NSMutableString?
I can create a regular NSString easily:
NSString *string = @"string value"; // Case 1
Is it possible to do something like this?
NSMutableString *mutableString = @"mutableString value"; // ...
1
vote
2answers
315 views
Trying to use copied NSMutableString property causes an exception
I started a small Xcode project to investigate whether an NSMutableString property should be copy or retain. I declared my property with the copy attribute:
@property (nonatomic,copy) ...
1
vote
1answer
220 views
Why can't I appendString in a for Loop? [closed]
I have the following code that I'm attempting to simply loop through an entity and for each NSPropertyDescription name, append it to a Mutable string that I'll be building a further string out of.
...
-1
votes
2answers
299 views
NSXMLParser:foundCharacters throwing 'Attempt to mutate immutable object with appendString:'
I have a problem when parsing an XML feed. There are approximately 15 child nodes per parent node. Currently I am parsing all nodes using stringbytrimmingchartersinset: then NSCharacterset ...
0
votes
2answers
125 views
iOS NSMutableString returns weird character
I make an array of several words, then I put all words into a mutable string, and then a mutable array of every character of this string. However, "wordSplitted" that is a mutable array of the ...
0
votes
3answers
165 views
Global NSMutableString
I have a tabbed views where I need to select various options from different tabbed views which should be appended in the same string. For this I want to use a NSMutableString.
After all the options ...
0
votes
3answers
350 views
application crashes when appendString for NSMutableString is used
I'm new to objective-c and I decided to start by working through Stanford's CS193s 2010F Session's lectures/assignments.
I was working on the second assignment, and I was stuck when I had to return a ...
0
votes
2answers
213 views
Need help fixing memory leak - NSMutableString
Have been playing around with instruments with not much luck in figuring out how to solve this memory leak.
Firstly the code:
-(NSString *) randomizeHint:(NSString *) wordToShuffle{
...
0
votes
1answer
93 views
Is it possible to use an NSMutableString inside a UITextField to optimize the setting of text?
The use of Instruments Time Profiler has revealed that the setting of UITextField's text property is very expensive in my app and so I would like to somehow optimise this. I thought it possible that ...


