|
For those new to message boards please try to follow a few simple rules when posting your question.- Choose the correct forum for your message. Posting a VB.NET question in the C++ forum will end in tears.
- Be specific! Don't ask "can someone send me the code to create an application that does 'X'. Pinpoint exactly what it is you need help with.
- Keep the subject line brief, but descriptive. eg "File Serialization problem"
- Keep the question as brief as possible. If you have to include code, include the smallest snippet of code you can.
- Be careful when including code that you haven't made a typo. Typing mistakes can become the focal point instead of the actual question you asked.
- Do not remove or empty a message if others have replied. Keep the thread intact and available for others to search and read. If your problem was answered then edit your message and add "[Solved]" to the subject line of the original post, and cast an approval vote to the one or several answers that really helped you.
- If you are posting source code with your question, place it inside <pre></pre> tags. We advise you also check the "Encode "<" (and other HTML) characters when pasting" checkbox before pasting anything inside the PRE block, and make sure "Use HTML in this post" check box is checked.
- Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.
- Please do not post links to your question into an unrelated forum such as the lounge. It will be deleted. Likewise, do not post the same question in more than one forum.
- Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.
- If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums.
- No advertising or soliciting.
- We reserve the right to move your posts to a more appropriate forum or to delete anything deemed inappropriate or illegal.
cheers
Chris Maunder
|
|
|
|
|
|
Is the functionality of IOS better than android or not?
|
|
|
|
|
Yes and no. But the question is fairly meaningless. What works well for one user may not be the same for another.
|
|
|
|
|
Hi all,
I am new to IOS but my company policies to use ipad for document signing.
I have a question.
Could you guide me how to start in IOS to build this kind of app ?
Native or webview or hybrid ?
Can i use the on device signature of Ipad to capure and store it ?
Many thanks
|
|
|
|
|
Message Closed
modified 23-Aug-20 1:14am.
|
|
|
|
|
Hi all,
I am looking for a solution to hire a team to write an app will load data from sql server to a form and digital signature.
Could you suggest me a solution ?
It take me a lot of pressure to do this task
modified 13-Jan-20 10:09am.
|
|
|
|
|
What does the URL you referenced have to do with "load data from sql server to a form and digital signature?"
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
|
|
|
|
|
I would guess OP is a spammer.
|
|
|
|
|
Hi,
I intend to hire a freelancer to build this app on IOS.
It will run locally on my wifi network which has access to sql server to show all relevant data to the form for client read and sign in.
Could you suggest me a solution ?
Webview or native app are ok too.
|
|
|
|
|
This is the wrong place to hire freelancers.
|
|
|
|
|
Especially hiring freelancers for free
The account has been reported as spammer (link in original post).
"Five fruits and vegetables a day? What a joke!
Personally, after the third watermelon, I'm full."
|
|
|
|
|
phil.o wrote: freelancers for free
Well, shouldn't they be free?
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
ZurdoDev wrote: Well, shouldn't they be free? It depends on which meaning of free is taken into account.
"Five fruits and vegetables a day? What a joke!
Personally, after the third watermelon, I'm full."
|
|
|
|
|
|
|
Hi,
I am developing ios app, in that need to create folder on ios device, i am using following code to create folder named "FT2019" ,is it my code is correct ? if correct then how see that folder on ios device physically.
if (device.platform.toLowerCase() == "android") {
window.resolveLocalFileSystemURL(cordova.file.externalRootDirectory, onFileSystemSuccess, onError);
} else {
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, onFileSystemSuccess, onError);
}
function onFileSystemSuccess(fileSystem) {
var entry = "";
if (device.platform.toLowerCase() == "android") {
entry = fileSystem;
} else {
entry = fileSystem.root;
}
entry.getDirectory("FT2019", {
create: true,
exclusive: false
}, onGetDirectorySuccess, onGetDirectoryFail);
};
function onError(e) {
alert("Fail to get folder");
};
function onGetDirectorySuccess(dir) {
dummyFilePath = dir.toURL();
};
function onGetDirectoryFail(dir) {
alert("Fail to get folder");
};
Regards
Aravindb
|
|
|
|
|
I am getting an error message for my use of nil and I am confused on how to properly unwrap the optional while placing it in an if statement to print out a string.
struct DatingProfile{
var Name: String
var Age: Int
var City: String
var FavoriteMovie: String?
var Hobbies: String?
}
let myDatingProfile = DatingProfile(Name: "William", Age: 30, City: "North Hollywood", FavoriteMovie: nil , Hobbies: "Basketball")
if let myFavoriteMovie = FavoriteMovie = nil{
print("\(Name) does not have a favorite movie")
}else {
print(myDatingProfile.FavoriteMovie)
}
}
exit status 1
main.swift:12:26: error: use of unresolved identifier 'FavoriteMovie'
if let myFavoriteMovie = FavoriteMovie = nil{
^~~~~~~~~~~~~
main.swift:13:12: error: use of unresolved identifier 'Name'
print("\(Name) does not have a favorite movie")
^~~~
main.swift:17:11: warning: expression implicitly coerced from 'String?' to 'Any'
print(myDatingProfile.FavoriteMovie)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
main.swift:17:27: note: provide a default value to avoid this warning
print(myDatingProfile.FavoriteMovie)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
?? <#default value#>
main.swift:17:27: note: force-unwrap the value to avoid this warning
print(myDatingProfile.FavoriteMovie)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
!
main.swift:17:27: note: explicitly cast to 'Any' with 'as Any' to silence this warning
print(myDatingProfile.FavoriteMovie)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
as Any
main.swift:20:1: error: extraneous '}' at top level
}
^
|
|
|
|
|
I don't know Swift, but my guess would be something like:
if let myFavoriteMovie = myDatingProfile.FavoriteMovie {
print(myFavoriteMovie)
}
else {
print("\(myDatingProfile.Name) does not have a favorite movie")
}
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
I got a free iPad from my college, and I need to remove any possibility of them locking it down. How do I do this? Also what factors do they need to remotely lock it down using the mdm profile? Do I need to be a certain distance from them? Do I need to be in the same country? Bcuz I’m currently over seas during summer vacation, so am I safe right now? The iPad is working as of right now. Oh and please don’t bother with convincing me not to do this, I know the risks involved and I’m still gonna do it, I’ve already made arrangements to transfer to another university , and I’m not paying to keep the iPad, I got the iPad 9months ago and I’ve grown attached to it, yet I can’t afford to pay for it, hence why I must remove the MDM profile, can someone tell me how? Or if there’s an easier way to prevent them from locking my iPad down remotely without removing the MDM profile and without me buying the iPad from them, then I’m all ears. Please help. Thanks.
|
|
|
|
|
So you think we are going to help you do something illegal? Don't hold your breath.
|
|
|
|
|
I am a long time Android user who started learning iOS development a while back and switched to learning Android. Wondering if I made the wrong decision. There is far more content available for iOS than Android, but as an Android user I'm struggling on a decision. I'm not really in a position to buy a new phone.
What made you pick iOS over Android?
|
|
|
|
|
iPhone is the high-quality product I use for 3 years not found any issue about anything and smoothly combine with Apple ecosystem
|
|
|
|
|
Android is a fragmented operating system most phones that have it installed aren't running the latest version, which can make development harder. On the other hand, iOS is consistent across all Apple devices, and easy to update when a new version comes out. iOS is a more secure operating system.
Most Android phones do better than the iPhone released in the same period in hardware performance, but them hence can consume more power and need to charge once a day basically. Android's openness leads to increased risk.
|
|
|
|
|