iOS Contact Detail Selection [closed] - ios

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Below image is share contact in WhatsApp.My question is: is it a default ios multiple property picker view or custom view developed WhatsApp? if default view please help me to develop that UI.

It is a default view developed by WhatsApp.
You can achieve this functionality by using UITableView.
Create an object of UITableView and create custom cell.
Hope this helps.

Related

Audio Message Player like WhatsApp in Swift [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
i Want to make audio message player in table view cell for chat app in swift does any one one have solution please help
for it you have to set audio url accounting to collectionView cell and play on did select event or you can also create custom UI for tableview cell.
attached url of some frameworks with help of it you can achieve the desire output.
https://github.com/yoheimuta/RxMusicPlayer
https://github.com/jorgenhenrichsen/SwiftAudio
https://github.com/delannoyk/AudioPlayer
https://github.com/tbaranes/AudioPlayerSwift
https://github.com/tanhakabir/SwiftAudioPlayer

how to create rotating compass view similar to the iPhone crop/rotate image control [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to create a rotating compass wheel view similar to the iPhone crop/rotate image control like in the demo image below, all I want is the graduated ruler that can be controlled by swiping , if anyone knows a library or a component that could help doing this in iOS using objective-c.
thank you in advance
the demo image

I want to Display local Images in Image Picker Controller from my project folder. [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am new in objective c.where i need to display the images in a grid form in Image Picker Controller from my project.
where i have many images, when the images will display i will click on one of them and it will display on another screen in Image View.
i need your help with source code thanks.
There's a lot of examples if you search for it...
Example,
Apple Developers
https://developer.apple.com/library/ios/samplecode/PhotoPicker/Introduction/Intro.html
Another one
http://www.appcoda.com/ios-programming-camera-iphone-app/
I.

How to make multiple radio group dynamically and manage check/uncheck state in a single view controller in iOS [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I have to create multiple dynamic radio group in iOS for my application.
Preferred way to do it by Apple is using a UITableView with checkmark accessories. But if you need web style radio buttons, you can either implement yourself or use some open source libraries.
Check this one: https://github.com/frederik-jacques/TNRadioButtonGroup

How to add a popup menu in i-Phone on a button click? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
i am a beginner to iOS development.
I was trying to display a pop-up menu on click of a button. And i need to display some other action titles like update, delete,cancel on that pop-up menu. Could anyone please me to solve this?
You want to look into UIActionSheet and/or UIPopover.
UIActionSheet:
https://developer.apple.com/library/ios/documentation/uikit/reference/uiactionsheet_class/Reference/Reference.html
UIPopover:
https://developer.apple.com/Library/ios/documentation/UIKit/Reference/UIPopoverController_class/Reference/Reference.html
Note: UIPopovers are currently only for iPad but there are open source projects out there that recreate it for iPhone as well:
https://github.com/50pixels/FPPopover/

Resources