Tagged Questions
-2
votes
1answer
21 views
Add button “More” to show another button on UITabbarcontroller
I want to show more 2 "button" when touch in a tab on "UITabbarController", how can I do that.
I use UIActionSheet but when I call
[choiceSheet showInView:[self.view window]];
[choiceSheet ...
0
votes
1answer
27 views
Present UIPopoverviewcontroller
I am working on a app, which uses UIPopoverController, I am getting a problem in presenting that popover, I have a UIView which is added on self.view, and a tableview added on that view, that table ...
0
votes
2answers
35 views
using id instead of custom class in for loop
I'm developing an app for iOS > 5.0 and using Xcode 4.6.2 & I've a UIView that contains a bunch of UIKit elements.
To give an example, i have a custom class called RadioButton whose base class ...
0
votes
1answer
10 views
Video Streaming from iPhone to a Web application through a server
I want to stream the Video/Audio recorded by the iphone to the server and view the same video from a webapplication in real time.
Can anybody tell me how this can be achieved if its possible
Thanks ...
0
votes
1answer
19 views
How to make scroll view image gallery in landscap and portrait mode
I am developing iPhone application which is support iOS 5.0 & iOS 6.0. My all ViewControllers in Portrait mode. But there is one ViewController which has image gallery. This image gallery has ...
0
votes
2answers
26 views
NSArray Values are Display after touche in screen in Tableview
- (void)viewDidLoad {
detailView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 330, 380) style:UITableViewStylePlain];
detailView.rowHeight = 55.0f;
detailView.dataSource =self;
...
0
votes
1answer
29 views
iOS top banner notification content customization
concerning iOS5 LocalNotifications:
1:
What is the maximim visible length of the message shown in the banner ?
Is it possible to make the text size smaller so I can fit longer text ?
Is it ...
0
votes
0answers
26 views
How to set EKEvent in calendar, which will repeat yearly for a particular day
i am created the EKEvent and set start date and end date , end date is 20 years from current date, there is no problem in this , but the created event is shown for current year only not for further ...
0
votes
0answers
16 views
How to authenticate Project Server 2013 [Office 365] URL (https://sitename/servername/sites/pwa) using iOS
I am creating an iOS app and want authenticate my Project Online URL using iOS. Currently I am using ASIHttpRequest to authenticate Project Server 2013 On-Premise URL but it is not authenticating the ...
-1
votes
2answers
29 views
How can i add an event to calendar from my app
I want to add an event to calendar from my app , for example in Iphone contact application user sets birthday , it will automatically added an event to calendar .
i want to do this from my app ..
1
vote
5answers
87 views
Checking a null value from Json response in Objective-C
[
{
"AT" : null,
"EA" : null,
"AD2" : "",
"OP" : null,
"AdsLst" : [
],
"EMs" : null,
"ND" : {
"MN" : null,
"FN" : "Sony",
"LN" : "J"
},
...
0
votes
4answers
52 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
3answers
74 views
NSInvalidArgumentException while adding NSDictionary to NSArray
I have declared NSDictionary *dict; globally and trying to add this dictionary into array but got a error
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* ...
-1
votes
2answers
27 views
Change buttons' font in inputAccessorView [closed]
I can't find a way to change the font for the buttons in the inputAccessoryView. Can somebody help me with this?
0
votes
0answers
27 views
Autoresizing subviews in iOS 5
I am making an application whose deployment target is iOS 5 and I have an autoresizing issue. Since auto layout is not available for iOS 5 I can't seem to keep a constant space between subviews when ...
0
votes
0answers
41 views
UISlider in UITableViewCell won't work in iOS 5.1
I have strange issue with UISlider it works perfect in iOS 6.0 but in iOS 5.1 it doesn't work. I have used storyboard for the UIViewController and UITableView has 4 kinds of cells. Everything works ...
0
votes
1answer
51 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 ...
0
votes
1answer
26 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
1answer
44 views
save multiple images in custom album in ios5 but not in camera roll?
save multiple images in custom album in ios5 but not in camera roll?
i am using ALAssetsLibrary+CustomPhotoAlbum example, but it can save only once in custom album and duplicate in camera roll.
i ...
-1
votes
0answers
20 views
IOS Libela (freebox) implementation [closed]
I want to create an app that uses libela api described in Freebox SDKs, it's like a remote controle
Freebox sdks
Other link of freebox descp
existing apps:
Player Skipper by Fichtre Mobile
...
1
vote
1answer
48 views
Twitter search for hashtag
I'm trying to parse tweets using Twitter Framework, so I write the following code and it's working fine, but it's not Synchronous.
Now I'm trying to get all the tweets from #iOS.
I have used the ...
0
votes
0answers
43 views
How to retrieve jobs from linkedin api in objective c?
Hi iam working with linkedin api in Iphone (Objective-C). Now Iam getting the details of network updates such as who are connecting with me and who are sending messages to me and also what iam sending ...
0
votes
1answer
39 views
Can we show more than one view with navigation bar having different controller as subview to another view?
Currently i am working on project in which i need to show multiple table view as a sub view to view (say view A). I have UIViewController as controller for view A. I created 3 more tableView (say view ...
1
vote
3answers
89 views
NSMutableArray Display Null Value in Table View
- (void)viewDidLoad {
self.detailView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, 320, 480) style:UITableViewStylePlain];
self.detailView.dataSource = self;
self.detailView.delegate = ...
0
votes
3answers
50 views
Dismiss UIPopoverController on didSelectRowAtIndexPath
I have implemented UIPopoverController with storyboard but i am not able to make it dismiss when I select particular row in UITableView.
When select particular row so that time I want to dismiss the ...
-4
votes
0answers
28 views
Use AVFoundation library [closed]
Can I use AVFoundation library to stop video on particular time, and save the captured video as image for later use? If yes where can I see some examples?
0
votes
1answer
25 views
Sending a mail without using MFMailComposeViewController
I'm trying to create a contact us form and the given feedback should have to send through a configured mail address.But my main concern is sending the feedback without using ...
0
votes
7answers
66 views
How to set RGB color from database
I'm new in iphone development.i want to set uilabel's background color from the database..i already stored RGB color into the database.but i'm not getting the background color.
const char *dbpath = ...
0
votes
2answers
39 views
how to disable UIMenuControll (cut,copy,paste,select all,delete) in UIviewController subclass?
i have implemented many methods but paste doesn't hide. i am using Xcode Version 4.5.2
-(BOOL)canPerformAction:(SEL)action withSender:(id)sender {
UIMenuController *menuController = ...
0
votes
0answers
44 views
UIRefreshControl with a UITableView (not a UITableViewController) very difficult to refresh
if i add a UIRefreshControl inside a TableView (not a TableViewController), a little smaller, i can't get the refresh activated cause the table hasnt the height that expected, is there any way to ...
0
votes
3answers
104 views
UITableView not reversing
I'm working on information retrieval where in the latest information in on top of UITableView. The code goes like this.
-(UITableViewCell*)tableView:(UITableView *)tableView ...
2
votes
1answer
90 views
Support landscape orientation to a circle of UIVIEWS:
Trying to support Landscape orientation, following is the drawing code. NOTE: aCell is object of UIControl class:-
- (void)layoutCells
{
for ( UIView *aCell in _cells ){
if ( [aCell superview] ...
0
votes
0answers
47 views
How to rotate uiimage without stretchable in objective C [duplicate]
How to Rotate UIImage in objective C without stretchable and how to draw border for uiimage not uiimageview
0
votes
1answer
56 views
How do i get the facebook username of a given PFUser?
PFUser *aUser = [PFUser currentUser]; //may not be the current user NSLog("username %@", [aUser username]); //This is ok if its not a FB user. otherwhise it gives me a token. I know there is a [PFUser ...
-1
votes
2answers
39 views
iOS - Payment solution for booking and payment through credit card
I am working with an application which is basically based on booking of some services, in which the customer can pay via his card while booking for the particular service (say hire a car), how to ...
0
votes
0answers
46 views
How To Play Remote Video(mp4) file with AVPlayer
I have been working for a long time to play .mp4 file which is located Remote location using AVPlayer. The Player is playing the audio track of the mp4 file but not the video.
i am using the ...
0
votes
2answers
30 views
Loading specific scene in Navigation View Controller
I created a Navigation View Controller. The static table view cell pushes me to a "Personalization" view. So, how can I programmatically load this view from another in this controller hierarchy?
...
0
votes
3answers
72 views
How to fetch details from NSData
I want to fetch specified data html_instructions from the below URL. I could take all data from this URL.
But I need the specific html_instructions only. How can I split the data?
I used the ...
3
votes
0answers
38 views
contact list from yahoo,hotmail,gmail and Facebook in iOS
I am creating an iOS application.I have to implement a mail sending option as "Tell a friend" inside the application.For that I have to get the contacts list from the user's gmail,yahoo,man,Facebook ...
0
votes
1answer
83 views
Getting bad access while deleting cell and reloading table view
I am trying to build a table using custom UITableViewCell, but after deleting cell and when I try load the view, I get an EXC_BAD_ACCESS error,here i'm getting data from a dictionary and loading it ...
1
vote
1answer
114 views
How to rotate cocos2D game into landscape mode in iOS 6?
I have an iPhone 4S (running iOS 5.1) & an iPhone 5 (running iOS 6.1). I noticed that when i try to open the cocos2D game, on the iPhone 4S running 5.1, the game is able to open perfectly fine in ...
0
votes
1answer
62 views
Saving Annotations and Pdf to a new Pdf file in IOS 5
I'm working on a pdf annotations application and i need to save the annotation so when i tried to save the annotations and the pdf content to a new pdf , the annotations are saved but the content of ...
-2
votes
0answers
20 views
pray Times and notification [closed]
I want to develop app for ramadan's month which includes time of pray using time location for each country, and need to display alert in every day for the dua'a what is the idea for doing this?
thanks ...
2
votes
2answers
83 views
IOS app with data stored in server - how to implement facebook user registration (from server or app?)
I am building an IOS app, which doesnt have any data with it. When it wants to show friends list for example, it will request server for the json data etc..
So, how can I implement facebook ...
0
votes
1answer
51 views
get notification on timezone change in iOS
can my application get any notification when device timezone changed? I want to get a notification when my application is foreground. NSTimezone does not worked for me as i have to continuously check ...
0
votes
0answers
31 views
Memory Leak.. ABContactsHelper
The instruments shows following memory leak & I cannot figure out how to solve it.
Any ideas ?? I am using ARC base target 5.0 with -fno-objc-arc flags for this library.
0
votes
1answer
46 views
UICollectionViewCell add animation for selected/highlighted item
I'm implementing simple collection view with images inside cells. The task that I want to achieve is when user taps on the cell - there should be flip animation and some details have to appear at the ...
1
vote
1answer
32 views
Name input like SMS or Facebook app
I'm trying to find a library that can handle autocompletion with tokened (grouped) texts.
There are some very nice libraries out there for autocompletion such as:
...
-1
votes
4answers
45 views
Accessing NSTimer from another controller [closed]
I'm new to iOS development and a bit stumped how to access an NSTimer set in another controller.
So theres ViewController and InfoController. The timer is set in ViewContoller (in onViewLoad) and the ...
0
votes
1answer
78 views
Orientation Landscape iOS 5 on xCode 4.6
I want my app to be landscape. I tried everything, my storyboard's orientations are landscape, I changed the supported orientations and the initial orientation in info.plist. Can anyone help me?
In ...






