The UILabel class implements a read-only text view.
0
votes
0answers
11 views
How to setup each uicollectionview cell to open new view with corresponding text
so I have my uicollectionview setup with 40 cells. What I would like to do is when a cell is tapped it opens new view with 2 labels, each with 40 corresponding different texts.
So I'm thinking of ...
0
votes
0answers
16 views
Add moving glint or highlight to a UIlabel with a different color than the textcolor? (slide-to-unlock)
Can I glint or highlight a uilabel with a different color than the labels textcolor?
For example I would like to have a UILabel be a whitish color with a .7-ish alpha and have the glint or highlight ...
-2
votes
3answers
56 views
show indexOfObject in UILabel
I am trying to show the number of objects in an NSArray in a UILabel as part of a UITabelViewCell:
UILabel *numberLabel = (UILabel *)[cell viewWithTag:103];
numberLabel.numberOfLines = ...
0
votes
1answer
24 views
UILabels not resizing in UITableView
I have a UITableView that uses prototype cells. The cells have a custom class called dataCell. The custom cells also have three UILabels:idLabel, contLabel, and expLabel. The cells properly resize ...
0
votes
2answers
16 views
IOS Prevent text from stacking on screen rotation
I have a custom table view cell with two labels in it. If I rotate the screen the two labels stack on top of each other and behave badly. If I back out and display the view again while still in ...
-3
votes
7answers
76 views
UILabel Text Color Change
output should be like this
UILabel *name = [[UILabel alloc]initWithFrame:CGRectMake(5,10,300,20)];
name.text =[Language localizedStringForKey:@"Name *"];
name.font = [UIFont ...
-1
votes
2answers
66 views
UILabel best way to change a property
When you change a property, what is the best way to do it ?
_label or self.label ?
ImageviewController.h
#import <UIKit/UIKit.h>
#import "ImageModel.h"
@interface ImageViewController : ...
0
votes
1answer
23 views
Unable to set Fontfamily
I am using fontscore.com_h_helvetica-neue-lt-std-75-bold.otf to set UILabel font.
I have already added this font in .plist, but i am unable to set this font family.
-(void) awakeFromNib
{
...
0
votes
2answers
24 views
Objective C - basis class of UIButton and UILabel
I am currently creating my own table model. My problem is that i wanna be able to put UILabel as well as UIButtons in the fields. To do so i have to make the field * to something both of them inert ...
-2
votes
2answers
34 views
adjustsFontSizeToFitWidth is not working in ios 5 if the label is displayed in 2 lines
I'm using adjustsFontSizeToFitWidth to shrink the label's size.
But things were fine until I tested it in a device with ios 5. :P
self.mainTitleLabel.numberOfLines=2;
...
-1
votes
2answers
48 views
Escape bad characters for iOS UILabel?
I'm feeding some NSString data (forum posts queried from my website) into a UILabel as part of my first app. Thing is, sometimes, depending on the content of the post, the Label goes entirely blank. ...
1
vote
2answers
37 views
Ensuring the symbol th in iOS appears correctly
I need to have 19th century in my UILabel. But it should appear as 19th century where the th symbol is a superscript. I am entering the label using plist. How do I ensure that it appears correctly in ...
0
votes
1answer
37 views
Adding a line break to a string from plist in iOS
I need to add a line break to a string, which I obtain from the plist. The string is passed to the UILabel to presented on screen. For example, my text is like "Adding a line break to a string from ...
0
votes
1answer
53 views
Line appears after animating UILabel
I am performing 2 animations on MyUILabel.
MyUILable is my custome class derived from UILabel and have implemented
drawRect method which draws borders only.
This is my animation code:
- ...
0
votes
2answers
27 views
ios UILabel setFrame error
#import <QuartzCore/QuartzCore.h>
- (void)viewDidLoad
{
[self.forwardView setFrame:CGRectMake(12.0, 40.0+height, 296.0, rootViewHeight-15.0)];
self.forwardView.layer.borderColor = ...
0
votes
1answer
36 views
A few questions regarding UILabel and UIImageView placement handling?
I have two questions regarding the placement and handling UILabel's and UIImageView's:
a. I'd like to know if its possible to detect the location of the "edge" of the text in a UILabel, to put a ...
0
votes
1answer
16 views
UILabel not updating even though it is connected to IBOutlet and IBOutlet has correct value
I have a TableViewCOntroller that shows a list of images and associated descriptions. I pass data to the detailed view in the prepare for segue method. THe MSMutableDrictionary Object I pass has the ...
0
votes
1answer
38 views
iOS: Dynamically change font weight and bluriness of UILabel
I've been looking at answers and documentation but can't find anything on this topic. I'm fairly new to IOS development, so hopefully this question is relevant for here.
I have a TableView where user ...
0
votes
2answers
34 views
Semantic Issue with UITextfield
I'm new to iOS. I've searched on here for UITextfield Sematic Issues here, as well as variations on that. I'm trying to make a pretty simple app, that you:
Enter text into a text filed
Press A button
...
-1
votes
2answers
51 views
How can I change the font size of a uilabel without changing the font itself?
I'm having an issue where I allow the user to select a font for a label in my project, but then when the user sets the size of that label (using a different button), the label resets to a default ...
0
votes
0answers
34 views
iPhone SDK: Buttons and Labels causing UIScrollView to not scroll
I have been dealing with this all day and I simply cant find what the heck is going wrong. I have a scrollview inside a viewcontroller, but when i add a label or button to the view the scroll view ...
0
votes
3answers
57 views
Trying to give UILabel a shadow, but it won't show up
I'm trying to give a label in one of the classes in my app a drop shadow, but it's not working at all. Nothing shows up. What am I doing wrong?
// Set label properties
titleLabel.font = [UIFont ...
0
votes
3answers
35 views
When setting the frame of a UILabel, is it possible to set it to the vertical and horizontal center of the superview in code?
Like, CGRectMake(), but have it specify the center, both horizontally and vertically?
0
votes
1answer
30 views
OpenSans font not working in iOS simulator
I'd like to use the OpenSans font on a UILabel, but it's not showing up in the iOS simulator. All that appears is the default system font. I have:
1) Added files to project + selected to copy to app ...
0
votes
0answers
18 views
iOS cell content in tableView only appears after selection
I have a problem with filling my tableView. The right cell content (timeLabel and textString) only shows up after I selected the cell; before there only appears the test textLabel.
- (UITableViewCell ...
0
votes
1answer
57 views
Label updating during audio processing
I'm very new to ios programming and I'm facing a problem regarding the update of labels during audio processing tasks.
I use a classic RecordingCallback -> ProcessAudio method. In ProcessAudio I ...
0
votes
1answer
39 views
Update UILabel from NSUserDefaults
I am trying to save/load some data for my game (in this case, the # of tips the player has available to them). If they are playing the game for the first time, they get 10 tips to start with, ...
-4
votes
1answer
46 views
Selecting random String from .plist? [closed]
I am currently new to developing and have run into a problem. I would like to read string from a .plist and when a button is pressed it picks a random string and presents it in a label? I have a ...
1
vote
3answers
39 views
Slide UILabel Onto View Controller
I'm trying to move a UILabel from a starting position of off the top of my UIViewController in a smooth slide type animation so that it slides down from the top when the view loads and then stops at a ...
0
votes
0answers
26 views
viewWithTag only updating last tag in set
I am trying to create series of labels with tags, then update the text. But, only the last label ever gets updated. How do I update a all of them, or a specific tagged label?
This example should ...
0
votes
1answer
38 views
Calculation returns 0 objective-c [duplicate]
I'm trying to calculate an average where i am getting the value from a textfield and multiplying it by the value of a label.
int grade1 = [[self.Cw1Grade text]intValue];
int grade1weight = ...
1
vote
1answer
23 views
How to make alternative name for UILabel's text attribute?
Probably a real newb question. I've got a UILabel called routeOutLabel. I want to make it easy to access its text attribute.
I was thinking of doing something like this:
@synthesize routeOutText = ...
-2
votes
0answers
15 views
UILable cannot receive data at the first time
I have a strange problem about my UITableView and UILable.
My app is a bookstore. MasterView will show all book titles and when tab on bookTitle, app will bring users to DetailView which show Title, ...
0
votes
0answers
17 views
Change UILabel in CollectionViewCell on Button click
I'm new to CollectionViews and created a table like this
x a b c d e
- 1 2 3 4 5
- 6 7 8 9 10
and so on, where the numbers 1-10 are IBOutlet UILabels with no text containing when the app starts.
...
0
votes
3answers
49 views
UILabel truncate even when it has remaining lines
Current Behaviour
I have a multiLine UILabel with a Rectangular frame of a particular size.
The font and all is so set that it will display a MAX of three lines and beyond that it will truncate.
...
0
votes
2answers
22 views
Weird Comparison of UITextField and UILabel
How come this happens? Using the code...
- (IBAction)dismissKeyboard:(id)sender {
if(textField.text == label.text) {
NSLog(@"Correct!");
}
else {
NSLog(@"Error?");
...
0
votes
1answer
32 views
repeat display array of text in label forever
I'm trying to repeat display array of text in label forever in xcode ,
first I added a array in viewDidLoad method
- (void)viewDidLoad
{
[super viewDidLoad];
_tweettest = @[@"tweet1",
@"tweet2",
...
-2
votes
1answer
23 views
Generate UILabel text when picking image [closed]
I want an app that generates a random text from an array to a UILabel when I pick an image through UIImagePicker, just like the Look alike apps works.
Can someone give me a good tutorial or explain ...
0
votes
1answer
6 views
Adding UILabel to UIImageView in CellForRow
I have a customCell in StoryBoard "CategoryCell", I have UIImageView with the cell which is also part of the cell also tied up in StoryBoard. The UIImageView is filled with a plain yellow color. I ...
0
votes
1answer
12 views
Objective C- Whats the normal size of
I wanna make my ISomething app as native as possible and have no idea whats a good size for the Elements. Is there any normal/default/standard size for UIButtons or UILabels i can use? Are there any ...
0
votes
3answers
45 views
How to capitalized first letter of Label
Here's my code :-
I need to Change only the first letter of the Word to capitalized.
UILabel *lbl4=[[UILabel alloc]initWithFrame:CGRectMake(10, 90, 200, 30)];
lbl4.text= [NSString ...
-1
votes
3answers
37 views
How to generate a multi-line UILabel
I have a json call and I parse the results into a UILabel. In my json response I have a 4 Names under Clients.
I am trying to put all the Clients into my UILabel.
Currently I only see the last of ...
0
votes
1answer
11 views
How to set the value of UILabel in iphone?
I'm doing this to set the value in UILabel:
NSMutableDictionary *responseDict = [responseString objectFromJSONString];
self.pkrLbl.text= [responseDict objectForKey:@"amount"];
and I'm getting this ...
-1
votes
3answers
89 views
Change the string of UILabel.text
aClass.aString = @"A";
self.aLabel.text = aClass.aString;
If I change aClass.aString to "B", also want self.aLabel.text change to "B" automatically.
How it works?
Is there a strong link exist that ...
0
votes
2answers
40 views
How to update superview UILabel text from subview in iPhone?
I have two class, Client_Main and Client_demo.
In Client_Main class I am using a label which shows client name and after click on a button from Client_Main class I have added Client_demo class as a ...
0
votes
1answer
70 views
Why is my UILabel not initializing when using another language? (iOS localization)
I'm applying localization to an iPhone app I'm working on, and slowly going through all texts/strings/labels throughout the app to dynamically retrive the correct language translation done through ...
0
votes
1answer
52 views
How can I calculate font size of UILabel
For instance, in Photoshop I have font of label 30px (for retina display).
What font size should I have for that?
if I set 15, it's too small.
How can I calculate?
0
votes
4answers
33 views
How to edit label
When I send some values to web service my labels display some fields of web service.
StationIDLabel show me station ID from web service like 12/345.But I want to display like 12345
didStartElement
...
-1
votes
5answers
42 views
iOS - let UILabel stretch to downside when there are multiple lines
I am using setNumberOfLines and sizeToFit to resize my label in tableView cells dynamically. When there are more than 2 lines, my label will stretch to upside, but I want to make it stretch down.
...
0
votes
1answer
41 views
iOS: changing a UILabel text of a modal view programmatically
I have an app that has two screens. In the first screen there's a button that opens the second screen as a modal view via a modal segue, and it has a UILabel.
I want this UILabel to have a certain ...







