Tagged Questions
0
votes
0answers
3 views
TPKeyboardAvoiding issue
I'm using the TPKeyboardAvoiding project and in doing so have an issue with the size of the scroll view.
The scrolling works great but for some reason it's not using the full screen, despite being ...
0
votes
3answers
39 views
ios how to hide one uiview and push another uiview at the same position
I want to set myview hidden and view visible, how can I do this. This is the code I got so far but it makes everything hidden.
CGRect frame = CGRectMake(185, 960, 768, 1004);
HiUIView *view = ...
1
vote
2answers
34 views
Objective C Converting float to integer produces strange results
I have float which has value 30 which I get from core data.
When I print the value using NSLog I get 30.
NSLog(@"The value of float temp is %@", [self.detailItem valueForKey:@"credit"]);
When I ...
0
votes
1answer
38 views
does have objective-c have generic types (and with constraints) similar to c#?
Example Generic Repository:
public interface IGenericRepository<T> where T : class
{
IQueryable<T> GetAll();
IQueryable<T> FindBy(Expression<Func<T, bool>> ...
0
votes
4answers
43 views
iOS 5 UIButton title showing with ellipsis
I have a problem regarding the UIButton title in iOS5. They are clipped and show like in this photo. I don't want them to be clipped, i want to show the full title.
In iOS6, they work perfectly.
...
0
votes
1answer
51 views
iOS 6 - UIActivityViewController items
Hope everyone is aware of iOS 6 contains new style of ActionSheet (UIActivityViewController). The UIActivityViewController can be initiated with the paramentes like string, url, image etc. Below is ...
0
votes
0answers
23 views
How to play videos, from an array, in MPMoviePlayerController for iOS 6, using NSThreads or NSOperationQueue?
//This MutableArray, has the file name, which the app will pick, from the Bundle.
arrayFileName=[[NSMutableArray alloc]initWithObjects:@"titanic", @"DummyName", @"Dinosaur",@"DummyName",@"titanic", ...
0
votes
0answers
18 views
Highlight UITabBarItem image
I am using UITabBarItems within a UITabBar. When a particular tabBarItem is selected it is shown highlighted. But for my case this highlighting is not enough (because of the background color of the ...
0
votes
3answers
40 views
adding custom button to number pad keyboard ios 6
I am new in IOS & I am using IOS 6. I have more than one textfield in my code, one of them uses the Number pad keyboard and I want to add the custom button to it.
I am using this code:
...
2
votes
1answer
36 views
Playing Video on UIWebView getting Access Denied
Hello Everyone i am trying to play video based on URL that i am getting through API but i am getting Error like Access Denied.
The reason why i am playing video in UIWebView is because Video is not ...
0
votes
0answers
31 views
UITableView Delete Control and Delete Button not synced
I have seen a very strange behavior of my table view:
I have enabled the UITableViewEditingStyleDelete, which shows in the editing mode at the left side of the tableView a red "-" control. If I tap on ...
0
votes
3answers
51 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
1answer
32 views
Detect change in NSManagedObjectContext in app delegate from different class?
I have an NSManagedObjectContext in my app delegate and data is loaded and saved fine. I also call NSManagedObjectContext from master view controller and load data there. However I have problem as ...
0
votes
0answers
21 views
With YRDropdownView, when I present it after a refresh it gets caught at the top of the screen, and can't be seen
I'm using YRDropdownView to present notifications in my app, in this case when they try to manually trigger a data refresh it will notify them that there's no internet (if there isn't).
This refresh ...
0
votes
2answers
40 views
How to Insert Core Data Record Related to Another?
Currently I have two entities in my model; Module and Level. They have one to many relationship e.g. a level can have a lot of modules. How can can I insert data so that they are related one to ...
0
votes
1answer
46 views
Objective C: “Property implementation must have its declaration in interface” [closed]
I keep getting error above but I am not sure why. I imported all the required classes and I declared the properties. Any help is appreciated. I have included code below:
// ...
0
votes
1answer
24 views
Strange Bug in iOS 6 UINavigationController
I have found a strange bug in ios. When I use UINavigationController and push other controllers, the titleView shifted to the right so much as how many controllers was pushed
It's looks like this:
...
0
votes
1answer
51 views
UIToolbar buttons with UIImage not entirely transparent
I've had this code forever, and it used to work, but it started exhibiting an annoying behavior in, I think, iOS 6. There are several similar threads on SO, but I haven't found a solution that I am ...
0
votes
1answer
39 views
dismissViewControllerAnimated results in empty screen
I present modal view which is a navigation controller:
UINavigationController *nvc = [[UINavigationController alloc] initWithRootViewController:photoEditVC];
[self presentViewController:nvc ...
0
votes
1answer
24 views
AutoLayout and animateWithDuration problems
I'm updating my iPhone app for the iPhone 5's larger screen, and there seems to be a problem with animateWithDuration:. Before I turned on autolayout, the interface elements would move slightly up the ...
0
votes
9answers
73 views
How to hide keyboard on touch the scroll view Background? [closed]
I went through all the solutions but none are working. I am developing an app for iOS 6, ipad. I want the keyboard to go away when user touches outside (on scrollview)...
1
vote
2answers
46 views
Downloading pdf is not working
I am trying to download locally the PDF that is there on my UIWebView using code mentioned below.
Save PDF which is displayed by UIWebView locally
When I type, NSLog(@"pdfille==%@", pdfFile);, I see ...
-3
votes
2answers
68 views
fetch the data from Array [closed]
I am developing AVAudioPlayer app in IOS 6 according to my project requirement.
I can retrieve the audio urls from server. This task successfully completed.
But i have small doubt. How to fetch the ...
0
votes
0answers
65 views
Using json parser to retrive the data from server
I am developing AVAudioPlayer app in iOS6 according to my project Requirement.
I used JSON parser to retrieve the songs from server side.
I completed JSON parser completed successfully, But I have ...
-1
votes
1answer
26 views
How to connect the first responder to viewcontroller
I am developing AVAudioplayer in ios6 according to my app requirement. I am total code finished. I want to connect first responder to viewcontrollerXIB. But i don't know how to give the connection ...
0
votes
4answers
42 views
Synthesized NSMutableArray is returning null
So I've declared this in my appDelegate.h
@property(nonatomic,strong) NSMutableArray *featured;
I've synthesized it like so in my appDelegate.m
@synthesize featured;
When I log ...
-3
votes
1answer
37 views
detect when subview showed up on screen
Have 2 functions, function 1 download data (photos and names) and when download is complete I call function 2 to update screen with that data (showing up buttons thumbnails with the photos and names).
...
0
votes
0answers
19 views
Set the background color of a UISegmented Filter Control Slider according to it's current value. Objective C
I found this really cool project on Github which I'm in the development process of using in my app. Here is the link to the Github Project. I found a way to handle the value changed but now I keep on ...
0
votes
1answer
27 views
UINavigationController and UIToolBar not working in iOS 6
I am working on iPad app in which click event of UINavigationController and UIToolBar is working fine in iOS 5 but, It is not working in iOS 6. My code:
self.window.rootViewController=navCon;
...
-1
votes
0answers
15 views
interruptionListenerCallback in AVAudioPlayer [closed]
Title: interruptionListenerCallback
I am developing AudioPlayer in ios6 application using AVAudioPlayer class Reference according to my project requirement. I can successfully wrote the code.But i ...
0
votes
1answer
33 views
Custom tableviewcell not displaying
I have created a custom tableviewcell. The class has 3 labels. Using a master view controller template to get started, I changed the default tableviewcell in my storyboard to reference my new custom ...
2
votes
2answers
54 views
How to Navigate from TextField to TextView on Done or Next button click
i have 1 problem when i click button "Next" of keypard to move cursor from TextField to TextView
The first ,all is ok. But in the second , the cursor jump into the line second of textView and then ...
3
votes
1answer
65 views
Dot syntax vs square brackets when setting background color in collection view
I'm still learning IOS SDK so hopefully this makes sense. I am still trying to wrap my head around using dot syntax. Could some one explain why this code doesn't work but the second one does?
Not ...
1
vote
4answers
76 views
Convert RGB Value to UIColor?
Given a huge list of RGB values, I would like to associate and pair them to a standard UIColor. For example, (255,0,0) is the "common" Red color. I would like to pair and label values like (254,85,44) ...
-3
votes
1answer
42 views
How to read iOS (and how many)notifications?
Okay since my question got closed i'll go more in depth, i'm writing a tweak that /reads/ if there's any notifications and if there is it /tells/ you with a sound or custom vibrate pattern.
Question ...
-1
votes
0answers
38 views
iOS objective-C: objects composed of other objects [closed]
I'm new to mobile development, and I am having a difficult time understanding how I can create objects that contain other objects. For example, lets take the facebook app, heres a screenshot:
...
-2
votes
1answer
40 views
ABAddressBookCopyArrayOfAllPeople returns empty array on device [closed]
I develop application on iOS 6 that need access to AddressBook, I'm using following code:
NSMutableArray *contacts = [[NSMutableArray alloc]init];
CFErrorRef *error = nil;
ABAddressBookRef ...
-2
votes
0answers
26 views
using json parser how to develope retrive songs from server in avaudioplayer in ios6
I am developing audioplayer in ios6 according to my project requirement. My requirement is using json parser to retrieve the songs from server.In my app Requirement is Audioplayer functionality.I am ...
0
votes
1answer
22 views
Multi UILocalNotification
hello i have problem with UILocalNotification. i am taking notification from a server an i store the Json Array in a Mutable array. Like :
idnoty * id of notification
titlenoty * title of ...
-3
votes
0answers
32 views
Using Json parser how to develop AVAudioPlayer [closed]
I am developing audioplayer in ios6 according to my project requirement. My requirement is using json parser to retrieve the songs from server.And also developing play button, Pause button, Rewind ...
0
votes
1answer
49 views
Pass Data to Subview
How can I pass data to a subview?
SubviewViewController.h:
@property (weak, nonatomic) IBOutlet UILabel *lblName;
TableViewController.m:
- (void)tableView:(UITableView *)tableView ...
1
vote
0answers
42 views
How to align the live screen camera at the center of the view in iPhone?
If there is a black bar at the bottom of the screen(like in the pic that i've pasted below), we have to re-scale the live screen camera overlay to fit the aspect ratio of iPhone. And even if I change ...
0
votes
0answers
32 views
NSAttributedString drop shadow is cropping on descenders
I am using NSMutableAttributedString in iOS6 to apply kerning and drop shadows within a UILabel subclass. The attributes are being applied properly, however the drop shadow is cropping at at the left ...
0
votes
1answer
23 views
libpaypalmobile.a symbols not found in architecture error?
Hi i integrated paypal Mobile sdk in my app. I got libpaypalmobile.a symbols not found in architecture i386 error. i added all required frameworks. when i build the project, i got that error. i ...
0
votes
0answers
26 views
change the default language in my iphone ios6
i am using segmented control to switch the app language when the user tap on one segment i close the app then open it with the selected language using [NSUserDefaults standardUserDefaults] setObject: ...
0
votes
0answers
19 views
When rotating my viewController, the status bar doesn't rotate with the with. How to fix it?
Everyone. I've got an iOS6 ipad app to update. The problem I met is that only one view controller needs autorotate, and I don't find out the correct method to do this.
I've tried the following link ...
0
votes
0answers
36 views
I want to make some area of image transparent. Image is set as background of an UIButton
I have an image with irregular shape. I set it as a background image of an UIButton.
Now, I use OBShapedButton library to enable touch only where image is non-transparent. But, for some reason if I ...
0
votes
6answers
72 views
Dimiss two ViewControllers one after the another:iOS
I am trying to dismiss two view controllers one after the another,
In my first view controller I have kept uploading feature, which when completes the current view controller is dismissed.
Now, ...
0
votes
1answer
37 views
SLTwitterComposeViewController message sent to deallocated instance
I'm working on a cocos2d project on iOS6 and it crash time to time while I'm trying to share something on twitter.
It only crashes on physical device (iOS 6.1.3)
It runs without any problems on ...
0
votes
1answer
33 views
TableView as subview of UIView not appearing when app lunches in landscape mode
I am developing an application in which i created tableview as subview with two rows which contains label and textfield to take username and password from user.
I took help from this site to create ...




